Page 3 of 3 FirstFirst 123
Results 41 to 60 of 104

Thread: [DevQt] New versions, feature requests and bug reports

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Join Date
    Mar 2006
    Posts
    48
    Thanks
    5
    Thanked 4 Times in 3 Posts

    Default Re: [DevQt] New versions, feature requests and bug reports

    Quote Originally Posted by pasnox
    U can use/test Qt4DS instead
    thanx pasnox - i use it about month =] -- good IDE(i like it)

    about DevQt - can't compile, same errors as at Dwarf007 (do u test it?)

  2. #2
    Join Date
    Jan 2006
    Location
    travelling
    Posts
    1,116
    Thanks
    8
    Thanked 127 Times in 121 Posts
    Qt products
    Qt4
    Platforms
    Unix/X11 Windows

    Default Re: [DevQt] New versions, feature requests and bug reports

    Quote Originally Posted by evgenM
    about DevQt - can't compile, same errors as at Dwarf007 (do u test it?)
    Ouch! What the hell??? Sure I tested it but unfortunately not under Qt 4.1.1 or lower...
    I've got to do soon, it damn it! Please could you send me more information about your system(s) ? I mean OS, compiler and Qt version.

    I just hope it's not to late to ask it to be simple, so that you can work with just one simple file and not multiple file projects, and that you can use it and do stuff without using qt stuff (i.e. qmake etc.) or having qt installed, and that it will be a great application!
    It needs Qt4 installed (at the very least QtCore4.so and QtGui4.so) because Qt is the lib used to create GUI (and to perform lots of other tasks BTW). Both single file and project compilation should be available and we welcome ideas because no compilation is implemented yet. The default plugin handles c++/Qt4 and will require qmake (and possibly - it depends on the porject - uic, rcc, ...) to compile projects and gcc/mingw to compile any c(++)
    Current Qt projects : QCodeEdit, RotiDeCode

  3. #3
    Join Date
    Mar 2006
    Posts
    48
    Thanks
    5
    Thanked 4 Times in 3 Posts

    Default Re: [DevQt] New versions, feature requests and bug reports

    Quote Originally Posted by fullmetalcoder
    Ouch! What the hell??? Sure I tested it but unfortunately not under Qt 4.1.1 or lower...
    I've got to do soon, it damn it! Please could you send me more information about your system(s) ? I mean OS, compiler and Qt version.
    i use qt 4.1.2 under Linux (my gcc version 2.95.4 - very old =] )
    but i think problem with your library

    use ldd -r -d on libdevqt.so and see
    ...................
    libc.so.6 => /lib/libc.so.6 (0x40ca8000)
    libexpat.so.0 => /usr/lib/libexpat.so.0 (0x40d8d000)
    /lib/ld-linux.so.2 => /lib/ld-linux.so.2 (0x80000000)
    undefined symbol: map__Fv (./libdevqt.so)

  4. #4
    Join Date
    Jan 2006
    Location
    Warsaw, Poland
    Posts
    33,359
    Thanks
    3
    Thanked 5,015 Times in 4,792 Posts
    Qt products
    Qt3 Qt4 Qt5 Qt/Embedded
    Platforms
    Unix/X11 Windows Android Maemo/MeeGo
    Wiki edits
    10

    Default Re: [DevQt] New versions, feature requests and bug reports

    Compiles fine with gcc 4.01 and Qt 4.1.2 on mdk.

  5. #5
    Join Date
    Mar 2006
    Location
    somewhere between France & Germany
    Posts
    34
    Thanks
    1
    Thanked 3 Times in 3 Posts
    Qt products
    Qt3 Qt4
    Platforms
    Unix/X11 Windows

    Default Re: [DevQt] New versions, feature requests and bug reports

    gcc version 3.3.2
    Mandrake Linux 10.0 3.3.2-6mdk
    Qt version 4.1.1

    Not fine :-(

    I might have to update all this stuff :-)
    • The Manual said the program required Win95 or better, so I installed Linux.
    • Newton was a pessimist.
    • no Risk! no FuN!

  6. #6
    Join Date
    Jan 2006
    Posts
    369
    Thanks
    14
    Thanked 18 Times in 17 Posts
    Qt products
    Qt4
    Platforms
    Unix/X11 Windows

    Default Re: [DevQt] New versions, feature requests and bug reports

    Hi FMC,

    Why arent you using the SVN?
    Why arent you announcing your own team about the new release?
    Why didn't you test the software?
    Why did you release a BZ2 file, a nont native format on Windows?
    Why did not you use the script for loading the application which I posted on the mailing list, instead of what is released on this bz2? (no parameters, LD_LIBRARY_PATH is not set correctly)
    Why don't you have a project file for compiling the project from the main lib? I asked for it several times, and added it to the SVN. Not that you use it for anything...
    Why do you refuse to use the facilities provided by Berlios, and you continue to use this forum as a release manager ? (even though you were asked not to do this a few months ago)
    Why doesn't the project have an install target?
    Why there is no option to create a new project? A new file?
    Why the open project option does not work (I mean the on in the project menu, and the file/open thing yo did, which is just redicoulus)
    Why the print command does not work?
    Why the search command does not work?
    Why the replace command does not work?
    Why the gotoline command does not work?
    Why the add/remove/configure project command do not work?
    Why doesnt the configure shortcuts command work?
    Why doesnt the configure tools command work?
    Why there is no About dialog?
    Why ... why why why...

    I don't think you understand, how bad this project has gone. A few months ago, you had a bunch of people wiling to help you. Now all you have is a miscompiling code, and a GUI that does nothing.

  7. #7
    Join Date
    Jan 2006
    Location
    travelling
    Posts
    1,116
    Thanks
    8
    Thanked 127 Times in 121 Posts
    Qt products
    Qt4
    Platforms
    Unix/X11 Windows

    Default Re: [DevQt] New versions, feature requests and bug reports

    Quote Originally Posted by Dwarf007
    gcc version 3.3.2
    Mandrake Linux 10.0 3.3.2-6mdk
    Qt version 4.1.1

    Not fine :-(

    I might have to update all this stuff :-)
    It may come frome your gcc version but anyway I tracked all the occurence of map() in the source and found only one relevant : in devtreenode.cpp, replace

    Qt Code:
    1. QMap<QString, QVariant> map();
    2. def[CustomRole] = map;
    To copy to clipboard, switch view to plain text mode 
    by
    Qt Code:
    1. def[CustomRole] = QVariant(QVariant::Map);
    To copy to clipboard, switch view to plain text mode 
    and see if it works better...

    @elcuco

    Why arent you using the SVN?
    Why arent you announcing your own team about the new release?
    Why didn't you test the software?
    Why did you release a BZ2 file, a nont native format on Windows?
    Why did not you use the script for loading the application which I posted on the mailing list, instead of what is released on this bz2? (no parameters, LD_LIBRARY_PATH is not set correctly)
    Why don't you have a project file for compiling the project from the main lib? I asked for it several times, and added it to the SVN. Not that you use it for anything...
    Why do you refuse to use the facilities provided by Berlios, and you continue to use this forum as a release manager ? (even though you were asked not to do this a few months ago)
    1) my internet connection at home isn't working properly so I have no access to SVN
    2) I thought the team was dead after your last PM and weeks without news from the other members
    3) I tested it!!! :
    Windows ME, mingw 3.4.2 :
    - Qt 4.1.0
    - Qt 4.1.1
    - Qt 4.1.2

    Suse 10.0, gcc 4.0.2 :
    - Qt 4.1.1
    - Qt 4.1.3 snapshot
    4) bz2 compress better than zip and AFAIK all archiver under win can read it
    5) because I was in a hurry, mine worked and I didn't understand yours...
    6) I see no use for that...
    7) what are the facilities for beta???

    Why doesn't the project have an install target?
    why would the project need an install target at such an early state?

    Why there is no option to create a new project? A new file?
    Why the open project option does not work (I mean the on in the project menu, and the file/open thing yo did, which is just redicoulus)
    Why the print command does not work?
    Why the search command does not work?
    Why the replace command does not work?
    Why the gotoline command does not work?
    Why the add/remove/configure project command do not work?
    Why doesnt the configure shortcuts command work?
    Why doesnt the configure tools command work?
    Why there is no About dialog?
    Because it's not implemented yet! Do you think a GUI can be built and connected to the underlying code in a few minutes? This is just a beta...

    Why ... why why why...
    Maybe because you want to much in a very short time...
    Current Qt projects : QCodeEdit, RotiDeCode

  8. #8
    Join Date
    Mar 2006
    Location
    somewhere between France & Germany
    Posts
    34
    Thanks
    1
    Thanked 3 Times in 3 Posts
    Qt products
    Qt3 Qt4
    Platforms
    Unix/X11 Windows

    Default Re: [DevQt] New versions, feature requests and bug reports

    Ok.. it compiled now but when I tried to use it.. I opened a pro file and then I double clicked on one of my cpp files which made devqt crash:

    Qt Code:
    1. QWidget::setWindowModified: The window title does not contain a '[*]' placeholder!
    2. QWidget::setWindowModified: The window title does not contain a '[*]' placeholder!
    3. ./devqt: line 6: 16097 Segmentation fault ./devqt.bin
    To copy to clipboard, switch view to plain text mode 


    By the way:
    Quote Originally Posted by fullmetalcoder
    QMap<QString, QVariant> map();
    def[CustomRole] = map;
    it is not def but nodes in my devtreenode.cpp
    • The Manual said the program required Win95 or better, so I installed Linux.
    • Newton was a pessimist.
    • no Risk! no FuN!

  9. #9
    Join Date
    Jan 2006
    Location
    Warsaw, Poland
    Posts
    33,359
    Thanks
    3
    Thanked 5,015 Times in 4,792 Posts
    Qt products
    Qt3 Qt4 Qt5 Qt/Embedded
    Platforms
    Unix/X11 Windows Android Maemo/MeeGo
    Wiki edits
    10

    Default Re: [DevQt] New versions, feature requests and bug reports

    I am not part of the team, but I'll say a few words anyway

    Quote Originally Posted by fullmetalcoder
    It may come frome your gcc version but anyway I tracked all the occurence of map() in the source and found only one relevant : in devtreenode.cpp, replace

    Qt Code:
    1. QMap<QString, QVariant> map();
    2. def[CustomRole] = map;
    To copy to clipboard, switch view to plain text mode 
    by
    Qt Code:
    1. def[CustomRole] = QVariant(QVariant::Map);
    To copy to clipboard, switch view to plain text mode 
    and see if it works better...
    Remember that
    Qt Code:
    1. QMap<QString, QVariant> map();
    To copy to clipboard, switch view to plain text mode 
    is a declaration of a function called map which returns a QMap<QString, QVariant>.

    3) I tested it!!! :
    Windows ME, mingw 3.4.2 :
    - Qt 4.1.0
    - Qt 4.1.1
    - Qt 4.1.2

    Suse 10.0, gcc 4.0.2 :
    - Qt 4.1.1
    - Qt 4.1.3 snapshot
    You should test the code you write on other systems than your own. Especially on some vanilla ones.

    4) bz2 compress better than zip and AFAIK all archiver under win can read it
    AFAIK all (most?) win archivers handle gzip, but they have problems with bzip.

    5) because I was in a hurry, mine worked and I didn't understand yours...
    Unfortunately yours didn't work for me

    6) I see no use for that...
    Heh... my first question after unarchiving the sources, calling qmake from the main dir and reading the error message was "How the hell do you compile this thing?"

    7) what are the facilities for beta???
    I think he meant all those things connected with project releases (I don't know Berlios too well, so I may be wrong).


    Because it's not implemented yet! Do you think a GUI can be built and connected to the underlying code in a few minutes? This is just a beta...
    Then a good habit would be to disable all non-implemented actions. This still gives users an idea of the interface but doesn't make them wonder "why the hell nothing works".

    Don't take my answer as a way of discouraging you, this wasn't my intention. And don't be too hasty with releasing new versions. One can always download a snapshot from the SVN (provided that you use it to manage the code :P).

  10. #10
    Join Date
    Jan 2006
    Location
    Minsk, Brest, Belarus
    Posts
    54
    Thanks
    3
    Thanked 3 Times in 3 Posts
    Qt products
    Qt3 Qt4
    Platforms
    Unix/X11 Windows

    Question Re: [DevQt] New versions, feature requests and bug reports

    I'm sorry, but your app not working on Windows (QT4 and MSVC++ 6)
    It's a feature, isn't it?

  11. #11
    Join Date
    Jan 2006
    Location
    travelling
    Posts
    1,116
    Thanks
    8
    Thanked 127 Times in 121 Posts
    Qt products
    Qt4
    Platforms
    Unix/X11 Windows

    Default Re: [DevQt] New versions, feature requests and bug reports

    Quote Originally Posted by Xagen
    I'm sorry, but your app not working on Windows (QT4 and MSVC++ 6)
    It's a feature, isn't it?
    Yep! We don't want you to be fooled by M$ so we had no compatibility with M$VC++

    Just kidding! Could you be more precise ? Is it :

    1) compilation problem
    2) linking problem
    3) run-time crash
    4) something else



    I'd go for the first one because we're using QVariant (obliged to do so because of QSettings architecture...) and the doc says one function (I think value<T>() isn't supported under M$VC 6).

    When you've had described what's wrong the team will fix it ASAP. In the meantime switch to mingw32 or even better to Linux
    Current Qt projects : QCodeEdit, RotiDeCode

  12. #12
    Join Date
    Jan 2006
    Location
    Minsk, Brest, Belarus
    Posts
    54
    Thanks
    3
    Thanked 3 Times in 3 Posts
    Qt products
    Qt3 Qt4
    Platforms
    Unix/X11 Windows

    Red face Re: [DevQt] New versions, feature requests and bug reports



    Problem is while compiling your program with MSVC++ 6.0 ( we, russians, use pirate versions of MS products

    For example there is error in the following code:
    Qt Code:
    1. return (void)QMessageBox
    To copy to clipboard, switch view to plain text mode 
    (or something like that)


    Here is output:

    Qt Code:
    1. Microsoft Windows XP [&#1042;ерсия 5.1.2600]
    2. (&#1057;) Корпорация Майкрософт, 1985-2001.
    3.  
    4. C:\3\0.2.1\src>qmake
    5.  
    6. C:\3\0.2.1\src>nmake
    7.  
    8. Microsoft (R) Program Maintenance Utility Version 6.00.8168.0
    9. Copyright (C) Microsoft Corp 1988-1998. All rights reserved.
    10.  
    11. NMAKE -f Makefile.Release
    12.  
    13. Microsoft (R) Program Maintenance Utility Version 6.00.8168.0
    14. Copyright (C) Microsoft Corp 1988-1998. All rights reserved.
    15.  
    16. D:\qt\4.1.0\bin\moc.exe -DUNICODE -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_N
    17. O_DEBUG -DQT_GUI_LIB -DQT_CORE_LIB -DQT_THREAD_SUPPORT -I"D:/qt/4.1.0/include/Qt
    18. Core" -I"D:/qt/4.1.0/include/QtGui" -I"D:/qt/4.1.0/include" -I"D:/qt/4.1.0/inclu
    19. de/ActiveQt" -I"tmp\moc" -I"." -I"D:/qt/4.1.0/mkspecs/win32-msvc" -D_MSC_VER=120
    20. 0 -DWIN32 devapp.h -o tmp\moc\moc_devapp.cpp
    21. D:\qt\4.1.0\bin\moc.exe -DUNICODE -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_N
    22. O_DEBUG -DQT_GUI_LIB -DQT_CORE_LIB -DQT_THREAD_SUPPORT -I"D:/qt/4.1.0/include/Qt
    23. Core" -I"D:/qt/4.1.0/include/QtGui" -I"D:/qt/4.1.0/include" -I"D:/qt/4.1.0/inclu
    24. de/ActiveQt" -I"tmp\moc" -I"." -I"D:/qt/4.1.0/mkspecs/win32-msvc" -D_MSC_VER=120
    25. 0 -DWIN32 devdialogs.h -o tmp\moc\moc_devdialogs.cpp
    26. D:\qt\4.1.0\bin\moc.exe -DUNICODE -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_N
    27. O_DEBUG -DQT_GUI_LIB -DQT_CORE_LIB -DQT_THREAD_SUPPORT -I"D:/qt/4.1.0/include/Qt
    28. Core" -I"D:/qt/4.1.0/include/QtGui" -I"D:/qt/4.1.0/include" -I"D:/qt/4.1.0/inclu
    29. de/ActiveQt" -I"tmp\moc" -I"." -I"D:/qt/4.1.0/mkspecs/win32-msvc" -D_MSC_VER=120
    30. 0 -DWIN32 devdock.h -o tmp\moc\moc_devdock.cpp
    31. D:\qt\4.1.0\bin\moc.exe -DUNICODE -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_N
    32. O_DEBUG -DQT_GUI_LIB -DQT_CORE_LIB -DQT_THREAD_SUPPORT -I"D:/qt/4.1.0/include/Qt
    33. Core" -I"D:/qt/4.1.0/include/QtGui" -I"D:/qt/4.1.0/include" -I"D:/qt/4.1.0/inclu
    34. de/ActiveQt" -I"tmp\moc" -I"." -I"D:/qt/4.1.0/mkspecs/win32-msvc" -D_MSC_VER=120
    35. 0 -DWIN32 devedit.h -o tmp\moc\moc_devedit.cpp
    36. D:\qt\4.1.0\bin\moc.exe -DUNICODE -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_N
    37. O_DEBUG -DQT_GUI_LIB -DQT_CORE_LIB -DQT_THREAD_SUPPORT -I"D:/qt/4.1.0/include/Qt
    38. Core" -I"D:/qt/4.1.0/include/QtGui" -I"D:/qt/4.1.0/include" -I"D:/qt/4.1.0/inclu
    39. de/ActiveQt" -I"tmp\moc" -I"." -I"D:/qt/4.1.0/mkspecs/win32-msvc" -D_MSC_VER=120
    40. 0 -DWIN32 coreedit.h -o tmp\moc\moc_coreedit.cpp
    41. D:\qt\4.1.0\bin\moc.exe -DUNICODE -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_N
    42. O_DEBUG -DQT_GUI_LIB -DQT_CORE_LIB -DQT_THREAD_SUPPORT -I"D:/qt/4.1.0/include/Qt
    43. Core" -I"D:/qt/4.1.0/include/QtGui" -I"D:/qt/4.1.0/include" -I"D:/qt/4.1.0/inclu
    44. de/ActiveQt" -I"tmp\moc" -I"." -I"D:/qt/4.1.0/mkspecs/win32-msvc" -D_MSC_VER=120
    45. 0 -DWIN32 devlinenumber.h -o tmp\moc\moc_devlinenumber.cpp
    46. D:\qt\4.1.0\bin\moc.exe -DUNICODE -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_N
    47. O_DEBUG -DQT_GUI_LIB -DQT_CORE_LIB -DQT_THREAD_SUPPORT -I"D:/qt/4.1.0/include/Qt
    48. Core" -I"D:/qt/4.1.0/include/QtGui" -I"D:/qt/4.1.0/include" -I"D:/qt/4.1.0/inclu
    49. de/ActiveQt" -I"tmp\moc" -I"." -I"D:/qt/4.1.0/mkspecs/win32-msvc" -D_MSC_VER=120
    50. 0 -DWIN32 devgui.h -o tmp\moc\moc_devgui.cpp
    51. D:\qt\4.1.0\bin\moc.exe -DUNICODE -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_N
    52. O_DEBUG -DQT_GUI_LIB -DQT_CORE_LIB -DQT_THREAD_SUPPORT -I"D:/qt/4.1.0/include/Qt
    53. Core" -I"D:/qt/4.1.0/include/QtGui" -I"D:/qt/4.1.0/include" -I"D:/qt/4.1.0/inclu
    54. de/ActiveQt" -I"tmp\moc" -I"." -I"D:/qt/4.1.0/mkspecs/win32-msvc" -D_MSC_VER=120
    55. 0 -DWIN32 devhighlighter.h -o tmp\moc\moc_devhighlighter.cpp
    56. D:\qt\4.1.0\bin\moc.exe -DUNICODE -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_N
    57. O_DEBUG -DQT_GUI_LIB -DQT_CORE_LIB -DQT_THREAD_SUPPORT -I"D:/qt/4.1.0/include/Qt
    58. Core" -I"D:/qt/4.1.0/include/QtGui" -I"D:/qt/4.1.0/include" -I"D:/qt/4.1.0/inclu
    59. de/ActiveQt" -I"tmp\moc" -I"." -I"D:/qt/4.1.0/mkspecs/win32-msvc" -D_MSC_VER=120
    60. 0 -DWIN32 devsplash.h -o tmp\moc\moc_devsplash.cpp
    61. D:\qt\4.1.0\bin\moc.exe -DUNICODE -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_N
    62. O_DEBUG -DQT_GUI_LIB -DQT_CORE_LIB -DQT_THREAD_SUPPORT -I"D:/qt/4.1.0/include/Qt
    63. Core" -I"D:/qt/4.1.0/include/QtGui" -I"D:/qt/4.1.0/include" -I"D:/qt/4.1.0/inclu
    64. de/ActiveQt" -I"tmp\moc" -I"." -I"D:/qt/4.1.0/mkspecs/win32-msvc" -D_MSC_VER=120
    65. 0 -DWIN32 devstatus.h -o tmp\moc\moc_devstatus.cpp
    66. D:\qt\4.1.0\bin\moc.exe -DUNICODE -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_N
    67. O_DEBUG -DQT_GUI_LIB -DQT_CORE_LIB -DQT_THREAD_SUPPORT -I"D:/qt/4.1.0/include/Qt
    68. Core" -I"D:/qt/4.1.0/include/QtGui" -I"D:/qt/4.1.0/include" -I"D:/qt/4.1.0/inclu
    69. de/ActiveQt" -I"tmp\moc" -I"." -I"D:/qt/4.1.0/mkspecs/win32-msvc" -D_MSC_VER=120
    70. 0 -DWIN32 devsettings.h -o tmp\moc\moc_devsettings.cpp
    71. D:\qt\4.1.0\bin\moc.exe -DUNICODE -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_N
    72. O_DEBUG -DQT_GUI_LIB -DQT_CORE_LIB -DQT_THREAD_SUPPORT -I"D:/qt/4.1.0/include/Qt
    73. Core" -I"D:/qt/4.1.0/include/QtGui" -I"D:/qt/4.1.0/include" -I"D:/qt/4.1.0/inclu
    74. de/ActiveQt" -I"tmp\moc" -I"." -I"D:/qt/4.1.0/mkspecs/win32-msvc" -D_MSC_VER=120
    75. 0 -DWIN32 devproject.h -o tmp\moc\moc_devproject.cpp
    76. D:\qt\4.1.0\bin\moc.exe -DUNICODE -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_N
    77. O_DEBUG -DQT_GUI_LIB -DQT_CORE_LIB -DQT_THREAD_SUPPORT -I"D:/qt/4.1.0/include/Qt
    78. Core" -I"D:/qt/4.1.0/include/QtGui" -I"D:/qt/4.1.0/include" -I"D:/qt/4.1.0/inclu
    79. de/ActiveQt" -I"tmp\moc" -I"." -I"D:/qt/4.1.0/mkspecs/win32-msvc" -D_MSC_VER=120
    80. 0 -DWIN32 devworkspace.h -o tmp\moc\moc_devworkspace.cpp
    81. D:\qt\4.1.0\bin\rcc.exe -name DevEditor DevEditor.qrc -o tmp\rcc\qrc_Dev
    82. Editor.cpp
    83. cl -c -nologo -Zm200 -O1 -MD -O1 -MD -GR -GX -W3 -DUNICODE -DQT_LARGEFIL
    84. E_SUPPORT -DQT_DLL -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_CORE_LIB -DQT_THREAD_SUPPORT
    85. -I"D:/qt/4.1.0/include/QtCore" -I"D:/qt/4.1.0/include/QtGui" -I"D:/qt/4.1.0/incl
    86. ude" -I"D:/qt/4.1.0/include/ActiveQt" -I"tmp\moc" -I"." -I"D:/qt/4.1.0/mkspecs/w
    87. in32-msvc" -Fotmp\obj\ @C:\DOCUME~1\Oleg\LOCALS~1\Temp\nma00228.
    88. dev.cpp
    89. devapp.cpp
    90. devdialogs.cpp
    91. .\devdialogs.cpp(273) : error C2562: 'process' : 'void' function returning a val
    92. ue
    93. .\devdialogs.h(64) : see declaration of 'process'
    94. .\devdialogs.cpp(485) : error C2562: 'process' : 'void' function returning a val
    95. ue
    96. .\devdialogs.h(98) : see declaration of 'process'
    97. devdock.cpp
    98. devedit.cpp
    99. .\devhighlighter.h(30) : warning C4099: 'BlockData' : type name first seen using
    100. 'struct' now seen using 'class'
    101. .\dev.h(78) : see declaration of 'BlockData'
    102. .\devedit.cpp(164) : error C2562: 'setText' : 'void' function returning a value
    103. .\devedit.h(77) : see declaration of 'setText'
    104. coreedit.cpp
    105. devlinenumber.cpp
    106. devgui.cpp
    107. .\devgui.cpp(686) : error C2562: 'fileSave' : 'void' function returning a value
    108. .\devgui.h(71) : see declaration of 'fileSave'
    109. .\devgui.cpp(697) : error C2562: 'fileSave' : 'void' function returning a value
    110. .\devgui.h(71) : see declaration of 'fileSave'
    111. devhighlighter.cpp
    112. .\devhighlighter.h(30) : warning C4099: 'BlockData' : type name first seen using
    113. 'struct' now seen using 'class'
    114. .\dev.h(78) : see declaration of 'BlockData'
    115. devsplash.cpp
    116. devstatus.cpp
    117. devsettings.cpp
    118. devproject.cpp
    119. devscope.cpp
    120. devworkspace.cpp
    121. .\devworkspace.cpp(275) : error C2562: 'focus' : 'void' function returning a val
    122. ue
    123. .\devworkspace.h(74) : see declaration of 'focus'
    124. main.cpp
    125. Generating Code...
    126. NMAKE : fatal error U1077: 'cl' : return code '0x2'
    127. Stop.
    128. NMAKE : fatal error U1077: '"C:\Program Files\Microsoft Visual Studio\VC98\bin\N
    129. MAKE.EXE"' : return code '0x2'
    130. Stop.
    To copy to clipboard, switch view to plain text mode 

  13. #13
    Join Date
    Jan 2006
    Location
    Minsk, Brest, Belarus
    Posts
    54
    Thanks
    3
    Thanked 3 Times in 3 Posts
    Qt products
    Qt3 Qt4
    Platforms
    Unix/X11 Windows

    Red face Re: [DevQt] New versions, feature requests and bug reports

    I'm already a Linux user since 1998.
    But at this moment i'm coding a cross-platform application.

  14. #14
    Join Date
    Jan 2006
    Location
    Minsk, Brest, Belarus
    Posts
    54
    Thanks
    3
    Thanked 3 Times in 3 Posts
    Qt products
    Qt3 Qt4
    Platforms
    Unix/X11 Windows

    Red face Re: [DevQt] New versions, feature requests and bug reports

    Quote Originally Posted by fullmetalcoder
    Yep! We don't want you to be fooled by M$ so we had no compatibility with M$VC++

    Just kidding! Could you be more precise ? Is it :

    1) compilation problem
    2) linking problem
    3) run-time crash
    4) something else



    I'd go for the first one because we're using QVariant (obliged to do so because of QSettings architecture...) and the doc says one function (I think value<T>() isn't supported under M$VC 6).

    When you've had described what's wrong the team will fix it ASAP. In the meantime switch to mingw32 or even better to Linux

    I have tried a QT4DS also, but the authors of this app don't think of the coders who use MSVC++ 6.

    For example they use findChildren method which is not compatible with my version of compiler, so I had to change all these methods to qFindChildren manually.

    It's not good!

    P.S. And I'm very interested in your application.

  15. #15
    Join Date
    Jan 2006
    Location
    travelling
    Posts
    1,116
    Thanks
    8
    Thanked 127 Times in 121 Posts
    Qt products
    Qt4
    Platforms
    Unix/X11 Windows

    Default Re: [DevQt] New versions, feature requests and bug reports

    Quote Originally Posted by Xagen
    I have tried a QT4DS also, but the authors of this app don't think of the coders who use MSVC++ 6.

    For example they use findChildren method which is not compatible with my version of compiler, so I had to change all these methods to qFindChildren manually.

    It's not good!

    P.S. And I'm very interested in your application.
    Thanks for your interest!

    Sorry about the compatibility problem but these one are damn weird!!! Looks like M$ compiler doesn't respect ANSI C / ISO C++ standards... I'll try to fix that but it' won't be easy since I don't own M$VC (pirate copy or not). What about trying mingw32???
    Current Qt projects : QCodeEdit, RotiDeCode

  16. The following user says thank you to fullmetalcoder for this useful post:

    Xagen (20th March 2006)

  17. #16
    Join Date
    Jan 2006
    Location
    Minsk, Brest, Belarus
    Posts
    54
    Thanks
    3
    Thanked 3 Times in 3 Posts
    Qt products
    Qt3 Qt4
    Platforms
    Unix/X11 Windows

    Default Re: [DevQt] New versions, feature requests and bug reports

    Yes, I'll try mingw compiler later not at this moment cause I don't have it under my hand.

    Also I'll try with msvc++ 7.1

    Good luck and thanks for good work!

  18. #17
    Join Date
    Feb 2006
    Posts
    18

    Default Re: [DevQt] bug reports

    find bug:
    in highlighted text if string look like
    '\\' text
    or
    "\\" text

    text has "quote color"
    Cut and Run

  19. #18
    Join Date
    Jan 2006
    Location
    travelling
    Posts
    1,116
    Thanks
    8
    Thanked 127 Times in 121 Posts
    Qt products
    Qt4
    Platforms
    Unix/X11 Windows

    Default Re: [DevQt] New versions, feature requests and bug reports

    right! thanks for submitting this bug!
    Unfortunately it won't be fixed soon. The project is in reorganization state : the team is designing a roadmap and assigning roles before starting coding again.

    ASA we'll start coding again this bug will be fixed but, please, try submitting them on Berlios bugtracker so as to allow to keep track of them more easily
    Current Qt projects : QCodeEdit, RotiDeCode

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.