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/tdeioslave/media/mediamanager/halbackend.cpp (-2 / +2 lines)
Lines 1139-1145 Link Here
1139
1139
1140
    tdesudoProcess << tdesudoPath
1140
    tdesudoProcess << tdesudoPath
1141
		<< "-d"
1141
		<< "-d"
1142
		<< "--noignorebutton"
1142
		<< "--ignorebutton"
1143
		<< "--caption" << dialogCaption
1143
		<< "--caption" << dialogCaption
1144
		<< "--comment" << dialogComment
1144
		<< "--comment" << dialogComment
1145
		<< "-c" << command;
1145
		<< "-c" << command;
Lines 1157-1163 Link Here
1157
1157
1158
    tdesuProcess << tdesuPath
1158
    tdesuProcess << tdesuPath
1159
		<< "-d"
1159
		<< "-d"
1160
		<< "--noignorebutton"
1160
		<< "--ignorebutton"
1161
		<< "--caption" << dialogCaption
1161
		<< "--caption" << dialogCaption
1162
		<< "-c" << command;
1162
		<< "-c" << command;
1163
1163
(-)tdebase/tdesu/tdesu/sudlg.cpp (-3 / +5 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, 0, icon)
18
     : KPasswordDialog(Password, enableKeep, (withIgnoreButton ? User1:NoDefault), 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-43 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.");
37
	    "Please enter root's password below or click "
38
	    "Ignore to continue with your current privileges.");
38
        } else {
39
        } else {
39
	    prompt = i18n("The action you requested needs additional privileges. "
40
	    prompt = i18n("The action you requested needs additional privileges. "
40
		"Please enter the password for \"%1\" below.").arg(static_cast<const char *>(m_User));
41
		"Please enter the password for \"%1\" below or click "
42
		"Ignore to continue with your current privileges.").arg(static_cast<const char *>(m_User));
41
	}
43
	}
42
    }
44
    }
43
    setPrompt(prompt);
45
    setPrompt(prompt);
(-)tdebase/tdesu/tdesu/tdesu.cpp (-1 / +1 lines)
Lines 64-70 Link Here
64
    { "r", I18N_NOOP("Use realtime scheduling"), 0 },
64
    { "r", I18N_NOOP("Use realtime scheduling"), 0 },
65
    { "nonewdcop", I18N_NOOP("Let command use existing dcopserver"), 0 },
65
    { "nonewdcop", I18N_NOOP("Let command use existing dcopserver"), 0 },
66
    { "comment <comment>", I18N_NOOP("Ignored"), "" },
66
    { "comment <comment>", I18N_NOOP("Ignored"), "" },
67
    { "noignorebutton", I18N_NOOP("Do not display ignore button"), 0 },
67
    { "ignorebutton", I18N_NOOP("Display the ignore button"), 0 },
68
    { "i <icon name>", I18N_NOOP("Specify icon to use in the password dialog"), 0},
68
    { "i <icon name>", I18N_NOOP("Specify icon to use in the password dialog"), 0},
69
    { "d", I18N_NOOP("Do not show the command to be run in the dialog"), 0},
69
    { "d", I18N_NOOP("Do not show the command to be run in the dialog"), 0},
70
    TDECmdLineLastOption
70
    TDECmdLineLastOption

Return to bug 985