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

(-)tdeutils-trinity-14.0.12/kgpg/kgpg.cpp~ (-2 / +2 lines)
Lines 909-918 Link Here
909
}
909
}
910
910
911
KgpgAppletApp::KgpgAppletApp()
911
KgpgAppletApp::KgpgAppletApp()
912
                : KUniqueApplication()//, kgpg_applet( 0 )
912
                : KUniqueApplication(), running(false), kgpg_applet(NULL)
913
{
913
{
914
914
915
        running=false;
916
}
915
}
917
916
918
917
Lines 950-955 Link Here
950
        args = TDECmdLineArgs::parsedArgs();
950
        args = TDECmdLineArgs::parsedArgs();
951
        if (running) {
951
        if (running) {
952
                kdDebug(2100)<<"Already running"<<endl;
952
                kdDebug(2100)<<"Already running"<<endl;
953
		if(!kgpg_applet) return 0;
953
                kgpg_applet->show();
954
                kgpg_applet->show();
954
        } else {
955
        } else {
955
                kdDebug(2100) << "Starting KGpg"<<endl;
956
                kdDebug(2100) << "Starting KGpg"<<endl;

Return to bug 3197