diff options
| author | Holger Freyther <[email protected]> | 2007-01-02 09:16:36 +0000 |
|---|---|---|
| committer | Holger Freyther <[email protected]> | 2007-01-02 09:16:36 +0000 |
| commit | f28181d83334f8ae8f61132f18785e696c062374 (patch) | |
| tree | cd44d3b36a0e2c1302363fd6bc9fba29e69026b2 /src/dolphinmainwindow.cpp | |
| parent | b03d4cfc5dd5c7ed530b3d337a1e77ccb391847e (diff) | |
SVN_SILENT make it compile (Dlg->Dialog)
svn path=/trunk/playground/utils/dolphin/; revision=618826
Diffstat (limited to 'src/dolphinmainwindow.cpp')
| -rw-r--r-- | src/dolphinmainwindow.cpp | 6 |
1 files changed, 3 insertions, 3 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 |
