I have some errors during make, what to do ? thanks
/home/chris/be-shell/be.shell.cpp: In static member function ‘static int BE::Shell::shadowPadding(const QString&)’:
/home/chris/be-shell/be.shell.cpp:466:16: attention : comparaison entre des expressions entières signée et non signée [-Wsign-compare]
/home/chris/be-shell/be.shell.cpp: In static member function ‘static void BE::Shell::populateWindowList(const QList<long unsigned="" int="">&, QMenu*, bool)’:
/home/chris/be-shell/be.shell.cpp:1084:57: attention : débordement dans la conversion implicte de la constante [-Woverflow]
/home/chris/be-shell/systray.cpp: In member function ‘virtual bool BE::SysTray::x11Event(XEvent*)’:
/home/chris/be-shell/systray.cpp:698:45: attention : comparaison entre des expressions entières signée et non signée [-Wsign-compare]
In file included from /home/chris/be-shell/hmenubar.cpp:4:0:
/home/chris/be-shell/menubar.cpp:94:1: attention : unused parameter ‘event’ [-Wunused-parameter]
In file included from /home/chris/be-shell/infocenter.cpp:22:0:
/home/chris/be-shell/dbus_info.h:124:10: attention : unused parameter ‘destUrl’ [-Wunused-parameter]
In file included from /home/chris/be-shell/build/moc_dbus_info.cxx:10:0:
/home/chris/be-shell/build/../dbus_info.h:124:10: attention : unused parameter ‘destUrl’ [-Wunused-parameter]
Last edit: Christophe 2013-02-14
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
This only looks like warnings (most "unused parameter" and signed/unsigned comparism) - nothing critical. if this is all you can jsut ignore it. means "thomas is too lazy to add Q_UNUSED(somevar);" ;-)
If it does /not/ build, please run
LC_ALL="C" LANG="C" make
and paste the full output.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hello, (sorry for my bad english I'm french)
I have some errors during make, what to do ? thanks
/home/chris/be-shell/be.shell.cpp: In static member function ‘static int BE::Shell::shadowPadding(const QString&)’:
/home/chris/be-shell/be.shell.cpp:466:16: attention : comparaison entre des expressions entières signée et non signée [-Wsign-compare]
/home/chris/be-shell/be.shell.cpp: In static member function ‘static void BE::Shell::populateWindowList(const QList<long unsigned="" int="">&, QMenu*, bool)’:
/home/chris/be-shell/be.shell.cpp:1084:57: attention : débordement dans la conversion implicte de la constante [-Woverflow]
/home/chris/be-shell/systray.cpp: In member function ‘virtual bool BE::SysTray::x11Event(XEvent*)’:
/home/chris/be-shell/systray.cpp:698:45: attention : comparaison entre des expressions entières signée et non signée [-Wsign-compare]
/home/chris/be-shell/runner.cpp:204:1: attention : unused parameter ‘parent’ [-Wunused-parameter]
/home/chris/be-shell/runner.cpp:348:1: attention : unused parameter ‘grp’ [-Wunused-parameter]
In file included from /home/chris/be-shell/hmenubar.cpp:4:0:
/home/chris/be-shell/menubar.cpp:94:1: attention : unused parameter ‘event’ [-Wunused-parameter]
In file included from /home/chris/be-shell/infocenter.cpp:22:0:
/home/chris/be-shell/dbus_info.h:124:10: attention : unused parameter ‘destUrl’ [-Wunused-parameter]
/home/chris/be-shell/trash.cpp:169:1: attention : unused parameter ‘ev’ [-Wunused-parameter]
/home/chris/be-shell/volume.cpp:61:1: attention : unused parameter ‘ev’ [-Wunused-parameter]
/home/chris/be-shell/battery.cpp:109:1: attention : unused parameter ‘pe’ [-Wunused-parameter]
/home/chris/be-shell/battery.cpp:196:1: attention : unused parameter ‘nowPlugged’ [-Wunused-parameter]
/home/chris/be-shell/battery.cpp:196:1: attention : unused parameter ‘udi’ [-Wunused-parameter]
In file included from /home/chris/be-shell/build/moc_dbus_info.cxx:10:0:
/home/chris/be-shell/build/../dbus_info.h:124:10: attention : unused parameter ‘destUrl’ [-Wunused-parameter]
Last edit: Christophe 2013-02-14
This only looks like warnings (most "unused parameter" and signed/unsigned comparism) - nothing critical. if this is all you can jsut ignore it. means "thomas is too lazy to add Q_UNUSED(somevar);" ;-)
If it does /not/ build, please run
LC_ALL="C" LANG="C" make
and paste the full output.
Thank you for quick reply :)
build and install ok
I'll try