By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 1931
Collapse All | Expand All

(-)a/kicker/kicker/ui/k_new_mnu.cpp (+7 lines)
Lines 1359-1366 void KMenu::insertStaticExitItems() Link Here
1359
    }
1359
    }
1360
1360
1361
    bool maysd = false;
1361
    bool maysd = false;
1362
#ifdef COMPILE_HALBACKEND
1362
    if (ksmserver.readBoolEntry( "offerShutdown", true ) && DM().canShutdown())
1363
    if (ksmserver.readBoolEntry( "offerShutdown", true ) && DM().canShutdown())
1363
        maysd = true;
1364
        maysd = true;
1365
#else
1366
    TDERootSystemDevice* rootDevice = TDEGlobal::hardwareDevices()->rootSystemDevice();
1367
    if( rootDevice ) {
1368
        maysd = rootDevice->canPowerOff();
1369
    }
1370
#endif
1364
1371
1365
    if ( maysd )
1372
    if ( maysd )
1366
    {
1373
    {

Return to bug 1931