List Info

Thread: compile error




compile error
user name
2007-03-29 14:23:44
  5%] Building CXX object
lib/sublime/CMakeFiles/sublime.dir/mainwindow.o
/usr/bin/c++   -Dsublime_EXPORTS   -Wnon-virtual-dtor
-Wno-long-long
-ansi -Wundef -Wcast-align -Wchar-subscripts -Wall -W
-Wpointer-arith
-Wformat-security -fno-exceptions -fno-check-new
-fno-common
-fno-threadsafe-statics -fvisibility=hidden -g3 -fno-inline
-fPIC
-I/home/kdev/ktrunk/kdevelop/bld/lib/sublime
-I/home/kdev/ktrunk/kdevelop/lib/sublime
-I/home/kdev/ktrunk/kdevelop
-I/home/kdev/ktrunk/kdevelop/bld
-I/home/kdev/ktrunk/kdevelop/lib
-I/home/kdev/usr/include -I/home/kdev/usr/include/Qt
-I/home/kdev/usr/mkspecs/default
-I/home/kdev/usr/include/QtCore
-I/home/kdev/usr/include/QtGui
-I/home/kdev/usr/include/Qt3Support
-I/home/kdev/usr/include/QtAssistant
-I/home/kdev/usr/include/QtDesigner
-I/home/kdev/usr/include/QtNetwork
-I/home/kdev/usr/include/QtOpenGL
-I/home/kdev/usr/include/QtSql
-I/home/kdev/usr/include/QtXml
-I/home/kdev/usr/include/QtSvg
-I/home/kdev/usr/include/QtUiTools
-I/home/kdev/usr/include/QtTest
-I/home/kdev/usr/include/QtDBus
-I/home/kdev/usr/include/KDE
-I/usr/local/include -I/home/kdev/usr/include/threadweaver
-D_BSD_SOURCE -D_XOPEN_SOURCE=500 -D_BSD_SOURCE
-D_GNU_SOURCE
-DQT_NO_STL -DQT_NO_CAST_TO_ASCII -D_REENTRANT
-DKDE_DEPRECATED_WARNINGS -DHAVE_CONFIG_H=1 -o
lib/sublime/CMakeFiles/sublime.dir/mainwindow.o -c
/home/kdev/ktrunk/kdevelop/lib/sublime/mainwindow.cpp
/home/kdev/ktrunk/kdevelop/lib/sublime/mainwindow.cpp: In
constructor
'Sublime::MainWindow::MainWindow(Sublime::Controller*,
Qt::WindowFlags)':
/home/kdev/ktrunk/kdevelop/lib/sublime/mainwindow.cpp:37:
error:
'DockOptions' is not a member of 'QMainWindow'
/home/kdev/ktrunk/kdevelop/lib/sublime/mainwindow.cpp:37:
error:
'AnimatedDocks' is not a member of 'QMainWindow'
/home/kdev/ktrunk/kdevelop/lib/sublime/mainwindow.cpp:38:
error:
'AllowTabbedDocks' is not a member of 'QMainWindow'
/home/kdev/ktrunk/kdevelop/lib/sublime/mainwindow.cpp:39:
error:
'VerticalTabs' is not a member of 'QMainWindow'
/home/kdev/ktrunk/kdevelop/lib/sublime/mainwindow.cpp:39:
error:
'setDockOptions' was not declared in this scope
make[2]: ***
[lib/sublime/CMakeFiles/sublime.dir/mainwindow.o] Error 1
/////////////////////////////////////////////////////////

I tried to fix that, but these properties are not really in
QMainWindow,
and setDockOptions method was not declared anywhere.

Maybe the origianal author can fix it

_______________________________________________
KDevelop-devel mailing list
KDevelop-develkdevelop.org
https://barney.cs.uni-potsdam.de/mailman/listinf
o/kdevelop-devel

Re: compile error
user name
2007-03-29 14:58:17
On 29.03.07 12:23:44, dukju ahn wrote:
>
/home/kdev/ktrunk/kdevelop/lib/sublime/mainwindow.cpp:37:
error:
> 'DockOptions' is not a member of 'QMainWindow'
>
/home/kdev/ktrunk/kdevelop/lib/sublime/mainwindow.cpp:37:
error:
> 'AnimatedDocks' is not a member of 'QMainWindow'
>
/home/kdev/ktrunk/kdevelop/lib/sublime/mainwindow.cpp:38:
error:
> 'AllowTabbedDocks' is not a member of 'QMainWindow'
>
/home/kdev/ktrunk/kdevelop/lib/sublime/mainwindow.cpp:39:
error:
> 'VerticalTabs' is not a member of 'QMainWindow'
>
/home/kdev/ktrunk/kdevelop/lib/sublime/mainwindow.cpp:39:
error:
> 'setDockOptions' was not declared in this scope
> make[2]: ***
[lib/sublime/CMakeFiles/sublime.dir/mainwindow.o] Error 1
>
/////////////////////////////////////////////////////////
> 
> I tried to fix that, but these properties are not
really in QMainWindow,
> and setDockOptions method was not declared anywhere.
>
> Maybe the origianal author can fix it

No, you need to update your Qt. Since last monday KDE4
requires at least
Qt4.3 beta (or qt-copy).

Andreas

-- 
Go to a movie tonight.  Darkness becomes you.

_______________________________________________
KDevelop-devel mailing list
KDevelop-develkdevelop.org
https://barney.cs.uni-potsdam.de/mailman/listinf
o/kdevelop-devel

Re: compile error
user name
2007-03-29 15:23:12
2007/3/29, Andreas Pakulat <apakugmx.de>:
> On 29.03.07 12:23:44, dukju ahn wrote:
> > I tried to fix that, but these properties are not
really in QMainWindow,
> > and setDockOptions method was not declared
anywhere.
> >
> > Maybe the origianal author can fix it
>
> No, you need to update your Qt. Since last monday KDE4
requires at least
> Qt4.3 beta (or qt-copy).

OK Thanks.

_______________________________________________
KDevelop-devel mailing list
KDevelop-develkdevelop.org
https://barney.cs.uni-potsdam.de/mailman/listinf
o/kdevelop-devel

Re: compile error
user name
2007-03-29 15:23:12
2007/3/29, Andreas Pakulat <apakugmx.de>:
> On 29.03.07 12:23:44, dukju ahn wrote:
> > I tried to fix that, but these properties are not
really in QMainWindow,
> > and setDockOptions method was not declared
anywhere.
> >
> > Maybe the origianal author can fix it
>
> No, you need to update your Qt. Since last monday KDE4
requires at least
> Qt4.3 beta (or qt-copy).

OK Thanks.

_______________________________________________
KDevelop-devel mailing list
KDevelop-develkdevelop.org
https://barney.cs.uni-potsdam.de/mailman/listinf
o/kdevelop-devel

[1-4]

about | contact  Other archives ( Real Estate discussion Medical topics )