Results 1 to 2 of 2

Thread: Extra qualification error while compiling the project file

  1. #1
    Join Date
    Nov 2006
    Posts
    37
    Thanks
    1

    Default Extra qualification error while compiling the project file

    helo i got following errr

    ++ -c -pipe -Wall -W -g -D_REENTRANT -fPIC -DQT_THREAD_SUPPORT -DQT_PLUGIN -DQT_SHARED -DQT_NO_DEBUG -I/usr/lib/qt-3.3/mkspecs/default -I. -I/usr/lib/qt-3.3/include -I.ui/ -I.moc/ -o .obj/lhmail.o lhmail.cpp
    lhmailcert.h:35: error: extra qualification ‘LHMailCert::’ on member ‘LHMailCert’

    what u mean by extra qualification error
    and how to overcome it
    amit

  2. #2
    Join Date
    Feb 2006
    Location
    Oslo, Norway
    Posts
    6,264
    Thanks
    36
    Thanked 1,519 Times in 1,389 Posts
    Qt products
    Qt4
    Platforms
    MacOS X Unix/X11 Windows Symbian S60 Maemo/MeeGo

    Default Re: Extra qualification error while compiling the project file

    Qt Code:
    1. class LHMailCert
    2. {
    3. LHMailCert::LHMailCert();
    4. };
    To copy to clipboard, switch view to plain text mode 

    vs.

    Qt Code:
    1. class LHMailCert
    2. {
    3. LHMailCert();
    4. };
    To copy to clipboard, switch view to plain text mode 
    J-P Nurmi

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Digia, Qt and their respective logos are trademarks of Digia Plc in Finland and/or other countries worldwide.