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. [Solved] Use of signal-slot connect in Windows 10
Forum Updated to NodeBB v4.3 + New Features

[Solved] Use of signal-slot connect in Windows 10

Scheduled Pinned Locked Moved General and Desktop
windows 10signal-slotconnectconnect failureqt 5.4.1
24 Posts 4 Posters 11.6k Views 4 Watching
  • 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.
  • K Offline
    K Offline
    koahnig
    wrote on 21 Oct 2015, 18:18 last edited by
    #21

    A point I have missed in my previous response.

    I have written a small test this time.

    #include "Clas.h"
    #include <QTimer>
    #include <QDebug>
    
    Clas::Clas(QObject *parent) :
        QObject(parent)
    {
        QTimer *timea = new QTimer ( this );
        connect ( timea, SIGNAL ( timerout() ), this, SLOT (sltQuit() ) );
        qDebug() << "debug";
        qWarning() << "warning";
    }
    void Clas::sltQuit()
    {
    }
    

    and here is the output

    Qt: Untested Windows version 10.0 detected!
    QObject::connect: No such signal QTimer::timerout() in ..\..\Test\CheckConnect\Clas.cpp:9
    debug
    warning
    

    So it is working perfectly also on windows 10 with MinGW version Qt 5.4.1.

    Vote the answer(s) that helped you to solve your issue(s)

    1 Reply Last reply
    0
    • S Offline
      S Offline
      SGaist
      Lifetime Qt Champion
      wrote on 21 Oct 2015, 20:27 last edited by
      #22

      Just saw something: the warning's right, the signal is timeout not timerout

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

      K 1 Reply Last reply 22 Oct 2015, 08:04
      0
      • J Offline
        J Offline
        JKSH
        Moderators
        wrote on 21 Oct 2015, 23:28 last edited by
        #23

        Great! :)

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

        1 Reply Last reply
        0
        • S SGaist
          21 Oct 2015, 20:27

          Just saw something: the warning's right, the signal is timeout not timerout

          K Offline
          K Offline
          koahnig
          wrote on 22 Oct 2015, 08:04 last edited by
          #24

          @SGaist
          Yes. That was intensional. I just tested that my installation is still providing the message.
          Thanks a lot anyway.

          Vote the answer(s) that helped you to solve your issue(s)

          1 Reply Last reply
          0

          21/24

          21 Oct 2015, 18:18

          • Login

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