Updates from November, 2011 Toggle Comment Threads | Keyboard Shortcuts

  • Shafiul Azam 12:27 am on November 23, 2011 Permalink | Reply
    Tags: , qt moc, qt moc dir, qt signal slot error, qt troubleshooting   

    Qt Error: undefined reference to `vtable for 

    I was receiving this error once, when I was trying to add signals & slots to one of my classes. I figured out that Qt was having problems with moc files, and there were no moc files being generated.

    To solve the problem, I specified “moc directory” in the project’s .pro file:

    OBJECTS_DIR = debug/obj
    MOC_DIR = debug/moc

    And my problem was solved :D

     
    • Danish 12:27 am on January 29, 2012 Permalink | Reply

      Thanks. This helped me a lot

    • Dewsworld 7:49 pm on March 19, 2012 Permalink | Reply

      I tried your solution but it didn’t work

  • Shafiul Azam 3:53 pm on November 21, 2011 Permalink | Reply
    Tags: documentation, QSerialDevice,   

    QSerialDevice Documentation 

    I didn’t found any doc for QSerialDevice – but what I found was a doxygen file, :P so I generated documentation files. Here I’m uploading them so that people can get the docs without doxygen installing.

    Documentation – version 0.4.0

     

     
  • Shafiul Azam 11:46 pm on August 16, 2011 Permalink | Reply  

    Qt undefined reference to QNetworkAccessManager … Error! 

    To resolve the error, make sure:

    1. To include “network” in your .pro file: QT       += core gui network
    2. Include appropriate headers:

    #include <QtNetwork/QNetworkAccessManager>
    #include <QtNetwork/QNetworkRequest>
    #include <QtNetwork/QNetworkReply>

     
c
compose new post
j
next post/next comment
k
previous post/previous comment
r
reply
e
edit
o
show/hide comments
t
go to top
l
go to login
h
show/hide help
shift + esc
cancel
Follow

Get every new post delivered to your Inbox.