Remove some #warning's.

svn path=/trunk/KDE/kdebase/workspace/; revision=731712
This commit is contained in:
Luboš Luňák 2007-11-01 17:03:05 +00:00
parent f55b1056a2
commit e063744820
2 changed files with 3 additions and 8 deletions

View file

@ -69,10 +69,9 @@ NET::WindowType Bridge::windowType( unsigned long supported_types ) const
QIcon Bridge::icon() const QIcon Bridge::icon() const
{ {
#ifdef __GNUC__ QIcon ret( c->icon());
#warning KDE4 drop me ? ret.addPixmap( c->miniIcon());
#endif return ret;
return QIcon( /*c->miniIcon(),*/ c->icon());
} }
bool Bridge::isSetShade() const bool Bridge::isSetShade() const

View file

@ -382,10 +382,6 @@ KDE_EXPORT int kdemain( int argc, char * argv[] )
signal(SIGINT, SIG_IGN); signal(SIGINT, SIG_IGN);
if (signal(SIGHUP, KWin::sighandler) == SIG_IGN) if (signal(SIGHUP, KWin::sighandler) == SIG_IGN)
signal(SIGHUP, SIG_IGN); signal(SIGHUP, SIG_IGN);
#ifdef __GNUC__
#warning D-BUS TODO
// KApplication::disableAutoDcopRegistration();
#endif
KWin::Application a; KWin::Application a;
KWin::SessionManager weAreIndeed; KWin::SessionManager weAreIndeed;
KWin::SessionSaveDoneHelper helper; KWin::SessionSaveDoneHelper helper;