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 2110
Collapse All | Expand All

(-)ksmserver/server.cpp.orig (+4 lines)
Lines 598-604 Link Here
598
    clientInteracting = 0;
598
    clientInteracting = 0;
599
    xonCommand = config->readEntry( "xonCommand", "xon" );
599
    xonCommand = config->readEntry( "xonCommand", "xon" );
600
600
601
#ifdef COMPILE_TDEHARDWAREBACKEND
601
    hwDevices = TDEGlobal::hardwareDevices();
602
    hwDevices = TDEGlobal::hardwareDevices();
603
#endif
602
604
603
    connect( &knotifyTimeoutTimer, TQT_SIGNAL( timeout()), TQT_SLOT( knotifyTimeout()));
605
    connect( &knotifyTimeoutTimer, TQT_SIGNAL( timeout()), TQT_SLOT( knotifyTimeout()));
604
    connect( &startupSuspendTimeoutTimer, TQT_SIGNAL( timeout()), TQT_SLOT( startupSuspendTimeout()));
606
    connect( &startupSuspendTimeoutTimer, TQT_SIGNAL( timeout()), TQT_SLOT( startupSuspendTimeout()));
Lines 720-725 Link Here
720
        DM().shutdown( shutdownType, shutdownMode, bootOption );
722
        DM().shutdown( shutdownType, shutdownMode, bootOption );
721
    }
723
    }
722
    else {
724
    else {
725
#ifdef COMPILE_TDEHARDWAREBACKEND
723
        TDERootSystemDevice* rootDevice = hwDevices->rootSystemDevice();
726
        TDERootSystemDevice* rootDevice = hwDevices->rootSystemDevice();
724
        if (rootDevice) {
727
        if (rootDevice) {
725
            if (shutdownType == TDEApplication::ShutdownTypeHalt) {
728
            if (shutdownType == TDEApplication::ShutdownTypeHalt) {
Lines 729-734 Link Here
729
                rootDevice->setPowerState(TDESystemPowerState::Reboot);
732
                rootDevice->setPowerState(TDESystemPowerState::Reboot);
730
            }
733
            }
731
        }
734
        }
735
#endif
732
    }
736
    }
733
}
737
}
734
738

Return to bug 2110