Results 1 to 20 of 52

Thread: HaiQ - IDE for Qt4

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #14
    Join Date
    Jan 2006
    Location
    Bremen, Germany
    Posts
    554
    Thanked 86 Times in 81 Posts
    Qt products
    Qt3 Qt4
    Platforms
    Unix/X11 Windows

    Default Re: HaiQ - IDE for Qt4

    Some notes (mostly just my personal taste):

    1. I can't do an out-of-source build (maybe a qmake limitation? - I know that it won't work on windows, but should work on linux)
    2. usage() in src/qmake-HaiQ/qmake/option.cpp has too many '%s'
    3. there are a lot of warnings about unused variables - is this intented?
    4. You're using much "/" instead of '/' which should be much faster (no conversion from const char* to needed). The same with 'return ""' instead 'return QString()'
    5. sometimes your function takes 'QString foo' instead 'const QString &foo')
    6. you compare QStrings to "" instead use QString::isEmpty()
    7. Do you programm with msvc6 because of this:
    Qt Code:
    1. int j;
    2. for (j=0; j<action_list.count(); j++)
    To copy to clipboard, switch view to plain text mode 
    which should imho be rewritten by this
    Qt Code:
    1. for (int j=0; j<action_list.count(); j++)
    To copy to clipboard, switch view to plain text mode 
    To avoid confusion

    /edit: some more:

    - The links in the about box do not work: "Der Befehl lässt sich nicht ausführen. Die Datei oder der Ordner file:///home/ehrlicher_c/tmp/HaiQ-0.2.6-3/www.trolltech.com existiert nicht."
    - "make install" is not available
    - Tools -> Configuration gives me those warnings: "Warning: QProcess: Destroyed while process is still running."
    - imho is AStyle executable named 'astyle' on linux (and not AStyle)
    Last edited by ChristianEhrlicher; 15th October 2007 at 09:05.

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.