diff options
author | Timothy Pearson <[email protected]> | 2013-01-24 13:27:08 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-01-24 13:27:08 -0600 |
commit | 773793eead2fea173ec9202ee938020592e86a02 (patch) | |
tree | 2df8f77f488c1e7de1c16eb6d50d33337bc6bea5 /src/urldlg.cpp | |
parent | f4899658cbe0d29487071c8340b66c80cc2a3010 (diff) | |
download | tdesvn-773793eead2fea173ec9202ee938020592e86a02.tar.gz tdesvn-773793eead2fea173ec9202ee938020592e86a02.zip |
Rename KGlobal, KProcess, and KClipboard to avoid conflicts with KDE4
Diffstat (limited to 'src/urldlg.cpp')
-rw-r--r-- | src/urldlg.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/urldlg.cpp b/src/urldlg.cpp index a58cf5d..a88eaef 100644 --- a/src/urldlg.cpp +++ b/src/urldlg.cpp @@ -54,7 +54,7 @@ void UrlDlg::init_dlg() KHistoryCombo * combo = new KHistoryCombo(0,"history_combo"); combo->setDuplicatesEnabled(false); - KConfig *kc = KGlobal::config(); + KConfig *kc = TDEGlobal::config(); KConfigGroupSaver ks( kc, TQString::fromLatin1("Open-repository settings") ); int max = kc->readNumEntry( TQString::fromLatin1("Maximum history"), 15 ); combo->setMaxCount( max ); @@ -87,7 +87,7 @@ void UrlDlg::accept() KHistoryCombo *combo = static_cast<KHistoryCombo*>(urlRequester_->comboBox()); if (combo) { combo->addToHistory(urlRequester_->url()); - KConfig *kc = KGlobal::config(); + KConfig *kc = TDEGlobal::config(); KConfigGroupSaver ks(kc, TQString::fromLatin1("Open-repository settings")); kc->writeEntry(TQString::fromLatin1("History"), combo->historyItems()); kc->sync(); |