mirror of
https://invent.kde.org/system/dolphin
synced 2024-11-05 18:47:12 +00:00
Deprecated--
svn path=/trunk/KDE/kdebase/kfind/; revision=512327
This commit is contained in:
parent
164203667e
commit
bdff02e4e4
3 changed files with 5 additions and 5 deletions
|
@ -30,7 +30,7 @@ KfindDlg::KfindDlg(const KUrl & url, QWidget *parent, const char *name)
|
|||
KGuiItem(i18n("Stop"), "stop"),
|
||||
KStdGuiItem::saveAs())
|
||||
{
|
||||
QWidget::setCaption( i18n("Find Files/Folders" ) );
|
||||
QWidget::setWindowTitle( i18n("Find Files/Folders" ) );
|
||||
setButtonBoxOrientation(Qt::Vertical);
|
||||
|
||||
enableButton(Apply, true); // Enable "Find"
|
||||
|
|
|
@ -127,7 +127,7 @@ KBehaviourOptions::KBehaviourOptions(KConfig *config, QString group, KInstance *
|
|||
|
||||
homeURL = new KUrlRequester(this);
|
||||
homeURL->setMode(KFile::Directory);
|
||||
homeURL->setCaption(i18n("Select Home Folder"));
|
||||
homeURL->setWindowTitle(i18n("Select Home Folder"));
|
||||
hlay->addWidget( homeURL );
|
||||
connect(homeURL, SIGNAL(textChanged(const QString &)), this, SLOT(changed()));
|
||||
label->setBuddy(homeURL);
|
||||
|
|
|
@ -366,7 +366,7 @@ void KPluginOptions::scanDone()
|
|||
|
||||
void KPluginOptions::dirInit()
|
||||
{
|
||||
m_widget->dirEdit->setCaption(i18n("Select Plugin Scan Folder"));
|
||||
m_widget->dirEdit->setWindowTitle(i18n("Select Plugin Scan Folder"));
|
||||
connect( m_widget->dirNew, SIGNAL(clicked()), SLOT(dirNew()));
|
||||
connect( m_widget->dirRemove, SIGNAL(clicked()), SLOT(dirRemove()));
|
||||
connect( m_widget->dirUp, SIGNAL(clicked()), SLOT(dirUp()));
|
||||
|
@ -610,7 +610,7 @@ void KPluginOptions::pluginSave( KConfig* /*config*/ )
|
|||
|
||||
PluginDomainDialog::PluginDomainDialog(QWidget *parent) :
|
||||
QWidget(parent,"PluginDomainDialog") {
|
||||
setCaption(i18n("Domain-Specific Policies"));
|
||||
setWindowTitle(i18n("Domain-Specific Policies"));
|
||||
|
||||
thisLayout = new QVBoxLayout(this);
|
||||
thisLayout->addSpacing(6);
|
||||
|
@ -661,7 +661,7 @@ void PluginDomainListView::setupPolicyDlg(PushButton trigger,PolicyDialog &pDlg,
|
|||
case ChangeButton: caption = i18n( "Change Plugin Policy" ); break;
|
||||
default: ; // inhibit gcc warning
|
||||
}/*end switch*/
|
||||
pDlg.setCaption(caption);
|
||||
pDlg.setWindowTitle(caption);
|
||||
pDlg.setFeatureEnabledLabel(i18n("&Plugin policy:"));
|
||||
pDlg.setFeatureEnabledWhatsThis(i18n("Select a plugin policy for "
|
||||
"the above host or domain."));
|
||||
|
|
Loading…
Reference in a new issue