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

(-)tdebase/ksmserver/shutdown.cpp (-2 / +2 lines)
Lines 807-813 Link Here
807
            waitForKNotify = false;
807
            waitForKNotify = false;
808
        }
808
        }
809
        // event() can return -1 if KNotifyClient short-circuits and avoids KNotify
809
        // event() can return -1 if KNotifyClient short-circuits and avoids KNotify
810
        logoutSoundEvent = KNotifyClient::event( 0, "exitkde" ); // KDE says good bye
810
        logoutSoundEvent = KNotifyClient::event( 0, "exittde" ); // TDE says good bye
811
        if( logoutSoundEvent <= 0 ) {
811
        if( logoutSoundEvent <= 0 ) {
812
            waitForKNotify = false;
812
            waitForKNotify = false;
813
        }
813
        }
Lines 1008-1014 Link Here
1008
        SHUTDOWN_MARKER("notifySlot state != WaitingForKNotify");
1008
        SHUTDOWN_MARKER("notifySlot state != WaitingForKNotify");
1009
        return;
1009
        return;
1010
    }
1010
    }
1011
    if( event != "exitkde" || app != "ksmserver" ) {
1011
    if( event != "exittde" || app != "ksmserver" ) {
1012
        SHUTDOWN_MARKER("notifySlot event != \"exitkde\" || app != \"ksmserver\"");
1012
        SHUTDOWN_MARKER("notifySlot event != \"exitkde\" || app != \"ksmserver\"");
1013
        return;
1013
        return;
1014
    }
1014
    }
(-)tdebase/ksmserver/startup.cpp (-1 / +1 lines)
Lines 337-343 Link Here
337
    DCOPRef( "kcminit", "kcminit" ).send( "runPhase2" );
337
    DCOPRef( "kcminit", "kcminit" ).send( "runPhase2" );
338
    if( !defaultSession())
338
    if( !defaultSession())
339
        restoreLegacySession( TDEGlobal::config());
339
        restoreLegacySession( TDEGlobal::config());
340
    KNotifyClient::event( 0, "starttde" ); // this is the time KDE is up, more or less
340
    KNotifyClient::event( 0, "starttde" ); // this is the time TDE is up, more or less
341
}
341
}
342
342
343
void KSMServer::autoStart2Done()
343
void KSMServer::autoStart2Done()

Return to bug 2283