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

(-)tdebase/tdesu/tdesu/sudlg.cpp (-5 / +3 lines)
Lines 15-21 Link Here
15
#include "sudlg.h"
15
#include "sudlg.h"
16
16
17
KDEsuDialog::KDEsuDialog(TQCString user, TQCString auth_user, bool enableKeep,const TQString& icon, bool withIgnoreButton, int timeout)
17
KDEsuDialog::KDEsuDialog(TQCString user, TQCString auth_user, bool enableKeep,const TQString& icon, bool withIgnoreButton, int timeout)
18
     : KPasswordDialog(Password, enableKeep, (withIgnoreButton ? User1:NoDefault), icon)
18
     : KPasswordDialog(Password, enableKeep, 0, icon)
19
{
19
{
20
    TDEConfig* config = TDEGlobal::config();
20
    TDEConfig* config = TDEGlobal::config();
21
    config->setGroup("super-user-command");
21
    config->setGroup("super-user-command");
Lines 34-45 Link Here
34
    } else {
34
    } else {
35
        if (m_User == "root") {
35
        if (m_User == "root") {
36
	    prompt = i18n("The action you requested needs root privileges. "
36
	    prompt = i18n("The action you requested needs root privileges. "
37
	    "Please enter root's password below or click "
37
	    "Please enter root's password below.");
38
	    "Ignore to continue with your current privileges.");
39
        } else {
38
        } else {
40
	    prompt = i18n("The action you requested needs additional privileges. "
39
	    prompt = i18n("The action you requested needs additional privileges. "
41
		"Please enter the password for \"%1\" below or click "
40
		"Please enter the password for \"%1\" below.").arg(static_cast<const char *>(m_User));
42
		"Ignore to continue with your current privileges.").arg(static_cast<const char *>(m_User));
43
	}
41
	}
44
    }
42
    }
45
    setPrompt(prompt);
43
    setPrompt(prompt);

Return to bug 985