Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. Signal not found at runtime

Signal not found at runtime

Scheduled Pinned Locked Moved Unsolved General and Desktop
signalsmocqthread
17 Posts 7 Posters 11.7k Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • CentralScrutinizerC Offline
    CentralScrutinizerC Offline
    CentralScrutinizer
    wrote on last edited by CentralScrutinizer
    #1

    Here is my QObject with a few signals.

    class IclStreamController : public QObject
    {
        Q_OBJECT
    public:
        IclStreamController();
    
        // stream commands
        void startStream();
        void stopStream();
        void readStream();
    
    
        // state
        bool isStreaming();
    
    signals:
        void messageReceived(IclStreamMessage *msg);
        void streamStopped();
        void streamStarted();
        void disconnected();
        void error();
    
    private:
        IclStreamProcessor _streamProc;
        CircularByteBuffer _tcpBuffer;
        QTcpSocket *_socket;
        bool _isStreaming = false;
    };
    

    And the client code:

    void MainWindow::onStartClicked()
    {
    
        QThread *streamThread = new QThread;
        IclStreamController *streamer = new IclStreamController();
    
        streamer->moveToThread(streamThread);
    
    
        connect(streamer, &IclStreamController::messageReceived,
                this, handleStreamMessage);
    
        // connect stop button to stopStream
        connect(ui->btnStop, &QPushButton::clicked,
                streamer, &IclStreamController::stopStream);
    
        // connect thread start to startStream
        connect(streamThread, &QThread::started,
                streamer, &IclStreamController::startStream);
    
    
        // quit the thread and clean up if the stream is stopped or error occurs
        connect(streamer, &IclStreamController::streamStopped,
                streamThread, &QThread::quit);
    
        connect(streamer, &IclStreamController::error,
                streamThread, &QThread::quit);
    
        connect(streamer, &IclStreamController::streamStopped,
                streamer, &IclStreamController::deleteLater);
    
        connect(streamThread, &QThread::finished,
                streamThread, &QThread::deleteLater);
    
    
        streamThread->start();
    
    }
    

    When I try to connect the signals in IclStreamController, I get "QObject::connect: signal not found in IclStreamController" on the console and the connections don't work. All the other connections work fine.. just the IclStreamController ones don't. I looked at the moc generated code and I see the signals in the code:

    // SIGNAL 0
    void IclStreamController::messageReceived(IclStreamMessage * _t1)
    {
        void *_a[] = { Q_NULLPTR, const_cast<void*>(reinterpret_cast<const void*>(&_t1)) };
        QMetaObject::activate(this, &staticMetaObject, 0, _a);
    }
    
    // SIGNAL 1
    void IclStreamController::streamStopped()
    {
        QMetaObject::activate(this, &staticMetaObject, 1, Q_NULLPTR);
    }
    
    // SIGNAL 2
    void IclStreamController::streamStarted()
    {
        QMetaObject::activate(this, &staticMetaObject, 2, Q_NULLPTR);
    }
    
    // SIGNAL 3
    void IclStreamController::disconnected()
    {
        QMetaObject::activate(this, &staticMetaObject, 3, Q_NULLPTR);
    }
    
    // SIGNAL 4
    void IclStreamController::error()
    {
        QMetaObject::activate(this, &staticMetaObject, 4, Q_NULLPTR);
    }
    

    What the heck am I missing? Is it something to do with my (mis?)use of QThread? This seems pretty straightforward to me but I'm fairly new to the Qt framework... so be nice!

    kshegunovK 1 Reply Last reply
    0
    • CentralScrutinizerC CentralScrutinizer

      Here is my QObject with a few signals.

      class IclStreamController : public QObject
      {
          Q_OBJECT
      public:
          IclStreamController();
      
          // stream commands
          void startStream();
          void stopStream();
          void readStream();
      
      
          // state
          bool isStreaming();
      
      signals:
          void messageReceived(IclStreamMessage *msg);
          void streamStopped();
          void streamStarted();
          void disconnected();
          void error();
      
      private:
          IclStreamProcessor _streamProc;
          CircularByteBuffer _tcpBuffer;
          QTcpSocket *_socket;
          bool _isStreaming = false;
      };
      

      And the client code:

      void MainWindow::onStartClicked()
      {
      
          QThread *streamThread = new QThread;
          IclStreamController *streamer = new IclStreamController();
      
          streamer->moveToThread(streamThread);
      
      
          connect(streamer, &IclStreamController::messageReceived,
                  this, handleStreamMessage);
      
          // connect stop button to stopStream
          connect(ui->btnStop, &QPushButton::clicked,
                  streamer, &IclStreamController::stopStream);
      
          // connect thread start to startStream
          connect(streamThread, &QThread::started,
                  streamer, &IclStreamController::startStream);
      
      
          // quit the thread and clean up if the stream is stopped or error occurs
          connect(streamer, &IclStreamController::streamStopped,
                  streamThread, &QThread::quit);
      
          connect(streamer, &IclStreamController::error,
                  streamThread, &QThread::quit);
      
          connect(streamer, &IclStreamController::streamStopped,
                  streamer, &IclStreamController::deleteLater);
      
          connect(streamThread, &QThread::finished,
                  streamThread, &QThread::deleteLater);
      
      
          streamThread->start();
      
      }
      

      When I try to connect the signals in IclStreamController, I get "QObject::connect: signal not found in IclStreamController" on the console and the connections don't work. All the other connections work fine.. just the IclStreamController ones don't. I looked at the moc generated code and I see the signals in the code:

      // SIGNAL 0
      void IclStreamController::messageReceived(IclStreamMessage * _t1)
      {
          void *_a[] = { Q_NULLPTR, const_cast<void*>(reinterpret_cast<const void*>(&_t1)) };
          QMetaObject::activate(this, &staticMetaObject, 0, _a);
      }
      
      // SIGNAL 1
      void IclStreamController::streamStopped()
      {
          QMetaObject::activate(this, &staticMetaObject, 1, Q_NULLPTR);
      }
      
      // SIGNAL 2
      void IclStreamController::streamStarted()
      {
          QMetaObject::activate(this, &staticMetaObject, 2, Q_NULLPTR);
      }
      
      // SIGNAL 3
      void IclStreamController::disconnected()
      {
          QMetaObject::activate(this, &staticMetaObject, 3, Q_NULLPTR);
      }
      
      // SIGNAL 4
      void IclStreamController::error()
      {
          QMetaObject::activate(this, &staticMetaObject, 4, Q_NULLPTR);
      }
      

      What the heck am I missing? Is it something to do with my (mis?)use of QThread? This seems pretty straightforward to me but I'm fairly new to the Qt framework... so be nice!

      kshegunovK Offline
      kshegunovK Offline
      kshegunov
      Moderators
      wrote on last edited by
      #2

      @CentralScrutinizer
      Hello,
      Your code looks okay to me at a first glance. Perhaps you can debug (e.g. with qDebug) which of the connections is faulty (QObject::connect will return a bool).
      And you're not misusing QThread at all.

      Kind regards.

      Read and abide by the Qt Code of Conduct

      1 Reply Last reply
      0
      • VRoninV Offline
        VRoninV Offline
        VRonin
        wrote on last edited by VRonin
        #3

        QThread uses Qt::QueuedConnection so the arguments passed from signals must be valid metatypes you have to register IclStreamMessage* as metatype

        The way to confirm this is the source of the problem is replacing void messageReceived(IclStreamMessage *msg); with void messageReceived(int); and see if it works

        "La mort n'est rien, mais vivre vaincu et sans gloire, c'est mourir tous les jours"
        ~Napoleon Bonaparte

        On a crusade to banish setIndexWidget() from the holy land of Qt

        CentralScrutinizerC 1 Reply Last reply
        2
        • kshegunovK Offline
          kshegunovK Offline
          kshegunov
          Moderators
          wrote on last edited by
          #4

          @CentralScrutinizer said:

          connect(ui->btnStop, &QPushButton::clicked,
                      streamer, &IclStreamController::stopStream);
          

          By the way, doesn't this give you a compile error - argument mismatch (no possible conversion)?

          Read and abide by the Qt Code of Conduct

          VRoninV 1 Reply Last reply
          0
          • kshegunovK kshegunov

            @CentralScrutinizer said:

            connect(ui->btnStop, &QPushButton::clicked,
                        streamer, &IclStreamController::stopStream);
            

            By the way, doesn't this give you a compile error - argument mismatch (no possible conversion)?

            VRoninV Offline
            VRoninV Offline
            VRonin
            wrote on last edited by
            #5

            @kshegunov why would that be?

            "La mort n'est rien, mais vivre vaincu et sans gloire, c'est mourir tous les jours"
            ~Napoleon Bonaparte

            On a crusade to banish setIndexWidget() from the holy land of Qt

            kshegunovK 1 Reply Last reply
            0
            • VRoninV VRonin

              @kshegunov why would that be?

              kshegunovK Offline
              kshegunovK Offline
              kshegunov
              Moderators
              wrote on last edited by kshegunov
              #6

              @VRonin
              Well, the signal's signature is void (QPushButton::*)(bool) while the slot's signature is void (IclStreamController::*)().

              PS. Nope, it appears this is perfectly fine with QObject::connect.

              Read and abide by the Qt Code of Conduct

              JKSHJ 1 Reply Last reply
              0
              • VRoninV VRonin

                QThread uses Qt::QueuedConnection so the arguments passed from signals must be valid metatypes you have to register IclStreamMessage* as metatype

                The way to confirm this is the source of the problem is replacing void messageReceived(IclStreamMessage *msg); with void messageReceived(int); and see if it works

                CentralScrutinizerC Offline
                CentralScrutinizerC Offline
                CentralScrutinizer
                wrote on last edited by
                #7

                @VRonin Oh yes those are in a header file on their own.

                Q_DECLARE_METATYPE(IclStreamMessage)
                Q_DECLARE_METATYPE(IclStreamMessage*)
                
                

                Without those I get a compile error to the effect of:
                error: 'qt_metatype_id' is not a member of 'QMetaTypeId<IclStreamMessage*>

                The problem I'm having shows up at runtime. I also tried putting this in my main.cpp which had no effect:

                qRegisterMetaType<IclStreamMessage>();
                qRegisterMetaType<IclStreamMessage*>();
                

                Does QObject::connect automatically use a queued connection if the object is has been moved to a different thread or do I have to specify that?

                1 Reply Last reply
                0
                • kshegunovK kshegunov

                  @VRonin
                  Well, the signal's signature is void (QPushButton::*)(bool) while the slot's signature is void (IclStreamController::*)().

                  PS. Nope, it appears this is perfectly fine with QObject::connect.

                  JKSHJ Offline
                  JKSHJ Offline
                  JKSH
                  Moderators
                  wrote on last edited by
                  #8

                  @CentralScrutinizer said:

                  When I try to connect the signals in IclStreamController, I get "QObject::connect: signal not found in IclStreamController" on the console

                  Strange, I can't see anything wrong with the code you posted.

                  What happens if you completely delete your build directory, and re-build your project from scratch?

                  Does QObject::connect automatically use a queued connection if the object is has been moved to a different thread

                  Yes, by default. See http://doc.qt.io/qt-5/qt.html#ConnectionType-enum

                  As an experiment, keep your object in the main thread and run your program again. Do the error messages still persist?

                  @kshegunov said:

                  Well, the signal's signature is void (QPushButton::*)(bool) while the slot's signature is void (IclStreamController::*)().

                  That's perfectly fine. The signal has a bool parameter, while the slot has no parameters. Therefore, they are compatible -- the slot simply ignores the signal's parameter value. However, it would be incompatible if, say, the signal has no parameters but the slot has a bool parameter.

                  Qt Doc Search for browsers: forum.qt.io/topic/35616/web-browser-extension-for-improved-doc-searches

                  CentralScrutinizerC kshegunovK 2 Replies Last reply
                  1
                  • JKSHJ JKSH

                    @CentralScrutinizer said:

                    When I try to connect the signals in IclStreamController, I get "QObject::connect: signal not found in IclStreamController" on the console

                    Strange, I can't see anything wrong with the code you posted.

                    What happens if you completely delete your build directory, and re-build your project from scratch?

                    Does QObject::connect automatically use a queued connection if the object is has been moved to a different thread

                    Yes, by default. See http://doc.qt.io/qt-5/qt.html#ConnectionType-enum

                    As an experiment, keep your object in the main thread and run your program again. Do the error messages still persist?

                    @kshegunov said:

                    Well, the signal's signature is void (QPushButton::*)(bool) while the slot's signature is void (IclStreamController::*)().

                    That's perfectly fine. The signal has a bool parameter, while the slot has no parameters. Therefore, they are compatible -- the slot simply ignores the signal's parameter value. However, it would be incompatible if, say, the signal has no parameters but the slot has a bool parameter.

                    CentralScrutinizerC Offline
                    CentralScrutinizerC Offline
                    CentralScrutinizer
                    wrote on last edited by CentralScrutinizer
                    #9

                    @JKSH said:

                    What happens if you completely delete your build directory, and re-build your project from scratch?

                    Nothing... though I haven't ruled out this being a build issue. I'm using qmake with a subdirs project. The code that I posted is actually in two different projects. The class definition of the IclStreamController is in a library and the client code is in the app itself. There are also a couple of other projects in the subdirs but I haven't had any other build problems and everything seems like its building in the right order.

                    I also tried your suggestion of keeping it all in the main thread:

                        IclStreamController *streamer = new IclStreamController();
                    
                    
                        connect(streamer, &IclStreamController::messageReceived,
                                this, handleStreamMessage);
                    
                        // connect stop button to stopStream
                        connect(ui->btnStop, &QPushButton::clicked,
                                streamer, &IclStreamController::stopStream);
                    
                    
                        // quit the thread and clean up if the stream is stopped or error occurs
                        connect(streamer, &IclStreamController::streamStopped,
                                this, &MainWindow::signalDbg);
                    
                        connect(streamer, &IclStreamController::error,
                                this, &MainWindow::signalDbg);
                    
                        connect(streamer, &IclStreamController::streamStopped,
                                streamer, &IclStreamController::deleteLater);
                    

                    I still get the same errors... but the signals work anyway (at least the stop button one does). SO what's going on here? Maybe its something to do with QTHread after all?

                    JKSHJ 1 Reply Last reply
                    0
                    • CentralScrutinizerC CentralScrutinizer

                      @JKSH said:

                      What happens if you completely delete your build directory, and re-build your project from scratch?

                      Nothing... though I haven't ruled out this being a build issue. I'm using qmake with a subdirs project. The code that I posted is actually in two different projects. The class definition of the IclStreamController is in a library and the client code is in the app itself. There are also a couple of other projects in the subdirs but I haven't had any other build problems and everything seems like its building in the right order.

                      I also tried your suggestion of keeping it all in the main thread:

                          IclStreamController *streamer = new IclStreamController();
                      
                      
                          connect(streamer, &IclStreamController::messageReceived,
                                  this, handleStreamMessage);
                      
                          // connect stop button to stopStream
                          connect(ui->btnStop, &QPushButton::clicked,
                                  streamer, &IclStreamController::stopStream);
                      
                      
                          // quit the thread and clean up if the stream is stopped or error occurs
                          connect(streamer, &IclStreamController::streamStopped,
                                  this, &MainWindow::signalDbg);
                      
                          connect(streamer, &IclStreamController::error,
                                  this, &MainWindow::signalDbg);
                      
                          connect(streamer, &IclStreamController::streamStopped,
                                  streamer, &IclStreamController::deleteLater);
                      

                      I still get the same errors... but the signals work anyway (at least the stop button one does). SO what's going on here? Maybe its something to do with QTHread after all?

                      JKSHJ Offline
                      JKSHJ Offline
                      JKSH
                      Moderators
                      wrote on last edited by
                      #10

                      @CentralScrutinizer said:

                      The class definition of the IclStreamController is in a library and the client code is in the app itself.

                      Hmm...

                      1. Check that IclStreamController is exported by the library
                      2. Make sure you're not copying the IclStreamController header into the client project (in other words, make sure your client .pro file doesn't contain HEADERS += iclstreamcontroller.h or similar).
                        • Copying the header results in 2 copies of the IclStreamController meta object in your client app, which causes issues in Qt's signal-slot mechanism.

                      I still get the same errors... but the signals work anyway (at least the stop button one does). SO what's going on here? Maybe its something to do with QTHread after all?

                      Sounds like two different issues here. See if the 2 steps above help at all first, and then we'll go from there.

                      Qt Doc Search for browsers: forum.qt.io/topic/35616/web-browser-extension-for-improved-doc-searches

                      CentralScrutinizerC S 2 Replies Last reply
                      2
                      • JKSHJ JKSH

                        @CentralScrutinizer said:

                        The class definition of the IclStreamController is in a library and the client code is in the app itself.

                        Hmm...

                        1. Check that IclStreamController is exported by the library
                        2. Make sure you're not copying the IclStreamController header into the client project (in other words, make sure your client .pro file doesn't contain HEADERS += iclstreamcontroller.h or similar).
                          • Copying the header results in 2 copies of the IclStreamController meta object in your client app, which causes issues in Qt's signal-slot mechanism.

                        I still get the same errors... but the signals work anyway (at least the stop button one does). SO what's going on here? Maybe its something to do with QTHread after all?

                        Sounds like two different issues here. See if the 2 steps above help at all first, and then we'll go from there.

                        CentralScrutinizerC Offline
                        CentralScrutinizerC Offline
                        CentralScrutinizer
                        wrote on last edited by CentralScrutinizer
                        #11

                        @JKSH

                        Check that IclStreamController is exported by the library

                        This is a possible cause... It was not exported. I've been doing things statically until now but the last little app I created was getting too big so I'm trying to make this one dynamic. So I included some common macros for this (i know there is Q_DECL_EXPORT but its exactly the same thing behind the macros I'm using for non QT stuff) and exported the signals and public member functions.

                        The problem I get now with things (I think) properly exported is:

                        C:\Qt\5.5\mingw492_32\include\QtCore\qobject.h:239: error: undefined reference to `IclStreamController::staticMetaObject'
                        

                        I'm out of time today (I shouldn't be working on Sunday anyway :S) but I'll have another look at this tomorrow. Any idea about the new error I'm getting? I'm not sure I'm doing the exports right so that could be the problem but... if anyone recognizes this error as an obvious thing that would be good to know.

                        1 Reply Last reply
                        0
                        • JKSHJ JKSH

                          @CentralScrutinizer said:

                          When I try to connect the signals in IclStreamController, I get "QObject::connect: signal not found in IclStreamController" on the console

                          Strange, I can't see anything wrong with the code you posted.

                          What happens if you completely delete your build directory, and re-build your project from scratch?

                          Does QObject::connect automatically use a queued connection if the object is has been moved to a different thread

                          Yes, by default. See http://doc.qt.io/qt-5/qt.html#ConnectionType-enum

                          As an experiment, keep your object in the main thread and run your program again. Do the error messages still persist?

                          @kshegunov said:

                          Well, the signal's signature is void (QPushButton::*)(bool) while the slot's signature is void (IclStreamController::*)().

                          That's perfectly fine. The signal has a bool parameter, while the slot has no parameters. Therefore, they are compatible -- the slot simply ignores the signal's parameter value. However, it would be incompatible if, say, the signal has no parameters but the slot has a bool parameter.

                          kshegunovK Offline
                          kshegunovK Offline
                          kshegunov
                          Moderators
                          wrote on last edited by
                          #12

                          @JKSH

                          That's perfectly fine.

                          Yes, I'd tested it and had glanced at the source, because I wasn't sure about the new syntax. I know this "reduction" of parameters worked without issue with the old syntax.

                          @CentralScrutinizer

                          Any idea about the new error I'm getting?

                          Well, it looks like you didn't export the class? The error means the linker couldn't find the static member generated by the Q_OBJECT macro, which usually means that either you don't have the Q_OBJECT macro, or the class wasn't exported/imported.

                          Kind regards.

                          Read and abide by the Qt Code of Conduct

                          1 Reply Last reply
                          0
                          • CentralScrutinizerC Offline
                            CentralScrutinizerC Offline
                            CentralScrutinizer
                            wrote on last edited by
                            #13

                            The export (or lack thereof) definitely was the problem. Once I got in this morning and cleaned up by code a little and rebuilt everything the export is now working fine. I must have had an old build of something that wasn't getting cleaned.

                            Anyway thanks for the help!

                            1 Reply Last reply
                            0
                            • Z Offline
                              Z Offline
                              Zerkg
                              wrote on last edited by
                              #14

                              Necropost; but I hope the solution I found will help other people who also has meet the same problem.

                              Looks like the problem occurs only when you don't use "C++ Library" project template for shared libs and manually edit .pro file, mainly by just adding TEMPLATE = lib string.
                              By default, Qt generate special global file if you has selected "C++ Library" project template. The file will have the same name as your project but with "_global.h" postfix. For example, if a project's name is "Test", the auto-generated file name will be "Test_global.h".

                              The global file contains very simple code:

                              #ifndef TEST_GLOBAL_H
                              #define TEST_GLOBAL_H
                              
                              #include <QtCore/qglobal.h>
                              
                              #if defined(TEST_LIBRARY)
                              #  define TEST_EXPORT Q_DECL_EXPORT
                              #else
                              #  define TEST_EXPORT Q_DECL_IMPORT
                              #endif
                              
                              #endif // TEST_GLOBAL_H
                              

                              If you want to export a class with signals that you want to use OTSIDE the project, you MUST use the TEST_EXPORT macro instead of build-in __declspec(dllexport) or Q_DECL_EXPORT macros.

                              Hovewer, if you already created a project with wrong template, all you need is to manually add the global file, and DEFINES += TEST_LIBRARY string in your .pro file.

                              P.S. TEST here is just an example, you can use any other macro names you want, but be sure they are match in .pro and global.h files.

                              SGaistS 1 Reply Last reply
                              0
                              • Z Zerkg

                                Necropost; but I hope the solution I found will help other people who also has meet the same problem.

                                Looks like the problem occurs only when you don't use "C++ Library" project template for shared libs and manually edit .pro file, mainly by just adding TEMPLATE = lib string.
                                By default, Qt generate special global file if you has selected "C++ Library" project template. The file will have the same name as your project but with "_global.h" postfix. For example, if a project's name is "Test", the auto-generated file name will be "Test_global.h".

                                The global file contains very simple code:

                                #ifndef TEST_GLOBAL_H
                                #define TEST_GLOBAL_H
                                
                                #include <QtCore/qglobal.h>
                                
                                #if defined(TEST_LIBRARY)
                                #  define TEST_EXPORT Q_DECL_EXPORT
                                #else
                                #  define TEST_EXPORT Q_DECL_IMPORT
                                #endif
                                
                                #endif // TEST_GLOBAL_H
                                

                                If you want to export a class with signals that you want to use OTSIDE the project, you MUST use the TEST_EXPORT macro instead of build-in __declspec(dllexport) or Q_DECL_EXPORT macros.

                                Hovewer, if you already created a project with wrong template, all you need is to manually add the global file, and DEFINES += TEST_LIBRARY string in your .pro file.

                                P.S. TEST here is just an example, you can use any other macro names you want, but be sure they are match in .pro and global.h files.

                                SGaistS Offline
                                SGaistS Offline
                                SGaist
                                Lifetime Qt Champion
                                wrote on last edited by
                                #15

                                @Zerkg hi,

                                Just in case, it's described in the Creating Shared Libraries chapter of Qt's documentation.

                                Interested in AI ? www.idiap.ch
                                Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                                1 Reply Last reply
                                0
                                • JKSHJ JKSH

                                  @CentralScrutinizer said:

                                  The class definition of the IclStreamController is in a library and the client code is in the app itself.

                                  Hmm...

                                  1. Check that IclStreamController is exported by the library
                                  2. Make sure you're not copying the IclStreamController header into the client project (in other words, make sure your client .pro file doesn't contain HEADERS += iclstreamcontroller.h or similar).
                                    • Copying the header results in 2 copies of the IclStreamController meta object in your client app, which causes issues in Qt's signal-slot mechanism.

                                  I still get the same errors... but the signals work anyway (at least the stop button one does). SO what's going on here? Maybe its something to do with QTHread after all?

                                  Sounds like two different issues here. See if the 2 steps above help at all first, and then we'll go from there.

                                  S Offline
                                  S Offline
                                  seyed
                                  wrote on last edited by
                                  #16

                                  @JKSH said in Signal not found at runtime:

                                  librar

                                  So there MUST not be two class with equal name in the library and main app. did I understand correctly?

                                  JKSHJ 1 Reply Last reply
                                  0
                                  • S seyed

                                    @JKSH said in Signal not found at runtime:

                                    librar

                                    So there MUST not be two class with equal name in the library and main app. did I understand correctly?

                                    JKSHJ Offline
                                    JKSHJ Offline
                                    JKSH
                                    Moderators
                                    wrote on last edited by
                                    #17

                                    @seyed said in Signal not found at runtime:

                                    So there MUST not be two class with equal name in the library and main app. did I understand correctly?

                                    You can define the class in the library, and use it in the main app.

                                    But you cannot define the class in both the library and the main app at the same time.

                                    Qt Doc Search for browsers: forum.qt.io/topic/35616/web-browser-extension-for-improved-doc-searches

                                    1 Reply Last reply
                                    1

                                    • Login

                                    • Login or register to search.
                                    • First post
                                      Last post
                                    0
                                    • Categories
                                    • Recent
                                    • Tags
                                    • Popular
                                    • Users
                                    • Groups
                                    • Search
                                    • Get Qt Extensions
                                    • Unsolved