┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorHolger Freyther <[email protected]>2007-01-02 09:16:36 +0000
committerHolger Freyther <[email protected]>2007-01-02 09:16:36 +0000
commitf28181d83334f8ae8f61132f18785e696c062374 (patch)
treecd44d3b36a0e2c1302363fd6bc9fba29e69026b2 /src
parentb03d4cfc5dd5c7ed530b3d337a1e77ccb391847e (diff)
SVN_SILENT make it compile (Dlg->Dialog)
svn path=/trunk/playground/utils/dolphin/; revision=618826
Diffstat (limited to 'src')
-rw-r--r--src/dolphinmainwindow.cpp6
-rw-r--r--src/dolphinview.cpp12
2 files changed, 9 insertions, 9 deletions
diff --git a/src/dolphinmainwindow.cpp b/src/dolphinmainwindow.cpp
index 9fdfa2517..15d9b02f1 100644
--- a/src/dolphinmainwindow.cpp
+++ b/src/dolphinmainwindow.cpp
@@ -39,7 +39,7 @@
#include <kaction.h>
#include <kstandardaction.h>
#include <kmenu.h>
-#include <kio/renamedlg.h>
+#include <kio/renamedialog.h>
#include <kinputdialog.h>
#include <kshell.h>
#include <kdesktopfile.h>
@@ -379,7 +379,7 @@ void DolphinMainWindow::createFolder()
if (baseUrl.isLocalFile() && QFileInfo(baseUrl.path(KUrl::AddTrailingSlash) + name).exists()) {
- name = KIO::RenameDlg::suggestName(baseUrl, i18n("New Folder"));
+ name = KIO::RenameDialog::suggestName(baseUrl, i18n("New Folder"));
}
bool ok = false;
@@ -484,7 +484,7 @@ void DolphinMainWindow::createFile()
const bool fileExists = viewUrl.isLocalFile() &&
QFileInfo(viewUrl.path(KUrl::AddTrailingSlash) + KIO::encodeFileName(name)).exists();
if (fileExists) {
- name = KIO::RenameDlg::suggestName(viewUrl, name);
+ name = KIO::RenameDialog::suggestName(viewUrl, name);
}
// let the user change the suggested file name
diff --git a/src/dolphinview.cpp b/src/dolphinview.cpp
index 8fb16d1d5..4d6a9ed68 100644
--- a/src/dolphinview.cpp
+++ b/src/dolphinview.cpp
@@ -31,7 +31,7 @@
#include <kurl.h>
#include <klocale.h>
#include <kio/netaccess.h>
-#include <kio/renamedlg.h>
+#include <kio/renamedialog.h>
#include <kmimetyperesolver.h>
#include <assert.h>
@@ -547,11 +547,11 @@ void DolphinView::rename(const KUrl& source, const QString& newName)
if (destExists) {
// the destination already exists, hence ask the user
// how to proceed...
- KIO::RenameDlg renameDialog(this,
- i18n("File Already Exists"),
- source.path(),
- dest.path(),
- KIO::M_OVERWRITE);
+ KIO::RenameDialog renameDialog(this,
+ i18n("File Already Exists"),
+ source.path(),
+ dest.path(),
+ KIO::M_OVERWRITE);
switch (renameDialog.exec()) {
case KIO::R_OVERWRITE:
// the destination should be overwritten