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
{
#ifdef __GNUC__
#warning KDE4 drop me ?
#endif
return QIcon( /*c->miniIcon(),*/ c->icon());
QIcon ret( c->icon());
ret.addPixmap( c->miniIcon());
return ret;
}
bool Bridge::isSetShade() const

View file

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