]> git.lyx.org Git - lyx.git/commitdiff
remove unneeded extra lyx:: namespace qualifier
authorGeorg Baum <Georg.Baum@post.rwth-aachen.de>
Thu, 18 Jan 2007 15:20:33 +0000 (15:20 +0000)
committerGeorg Baum <Georg.Baum@post.rwth-aachen.de>
Thu, 18 Jan 2007 15:20:33 +0000 (15:20 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16746 a592a061-630c-0410-9148-cb99ea01b6c8

src/frontends/qt4/FileDialog.C

index 106a517c10d12e3968e2e617ea2f3721bad202d6..8ce53fc329bb67fe1d0ec44ab2ff1c80075883ba 100644 (file)
@@ -75,16 +75,16 @@ FileDialog::Result const FileDialog::save(docstring const & path,
                                          FileFilterList const & filters,
                                          docstring const & suggested)
 {
-       lyxerr[Debug::GUI] << "Select with path \"" << lyx::to_utf8(path)
-                          << "\", mask \"" << lyx::to_utf8(filters.as_string())
-                          << "\", suggested \"" << lyx::to_utf8(suggested) << '"' << endl;
+       lyxerr[Debug::GUI] << "Select with path \"" << to_utf8(path)
+                          << "\", mask \"" << to_utf8(filters.as_string())
+                          << "\", suggested \"" << to_utf8(suggested) << '"' << endl;
        FileDialog::Result result;
        result.first = FileDialog::Chosen;
 
 #ifdef USE_NATIVE_FILEDIALOG
        docstring const startsWith = from_utf8(
                makeAbsPath(to_utf8(suggested), to_utf8(path)).absFilename());
-       result.second = lyx::from_utf8(internal_path(fromqstr(
+       result.second = from_utf8(internal_path(fromqstr(
                QFileDialog::getSaveFileName(qApp->focusWidget(),
                toqstr(title_), toqstr(startsWith), toqstr(filters.as_string()) ))));
 #else
@@ -99,7 +99,7 @@ FileDialog::Result const FileDialog::save(docstring const & path,
        int res = dlg.exec();
        lyxerr[Debug::GUI] << "result " << res << endl;
        if (res == QDialog::Accepted)
-               result.second = lyx::from_utf8(internal_path(
+               result.second = from_utf8(internal_path(
                                        fromqstr(dlg.selectedFiles()[0])));
        dlg.hide();
 #endif
@@ -111,16 +111,16 @@ FileDialog::Result const FileDialog::open(docstring const & path,
                                          FileFilterList const & filters,
                                          docstring const & suggested)
 {
-       lyxerr[Debug::GUI] << "Select with path \"" << lyx::to_utf8(path)
-                          << "\", mask \"" << lyx::to_utf8(filters.as_string())
-                          << "\", suggested \"" << lyx::to_utf8(suggested) << '"' << endl;
+       lyxerr[Debug::GUI] << "Select with path \"" << to_utf8(path)
+                          << "\", mask \"" << to_utf8(filters.as_string())
+                          << "\", suggested \"" << to_utf8(suggested) << '"' << endl;
        FileDialog::Result result;
        result.first = FileDialog::Chosen;
 
 #ifdef USE_NATIVE_FILEDIALOG
        docstring const startsWith = from_utf8(
                makeAbsPath(to_utf8(suggested), to_utf8(path)).absFilename());
-       result.second = lyx::from_utf8(internal_path(fromqstr(
+       result.second = from_utf8(internal_path(fromqstr(
                QFileDialog::getOpenFileName(qApp->focusWidget(), 
                toqstr(title_), toqstr(startsWith), toqstr(filters.as_string()) ))));
 #else
@@ -133,7 +133,7 @@ FileDialog::Result const FileDialog::open(docstring const & path,
        int res = dlg.exec();
        lyxerr[Debug::GUI] << "result " << res << endl;
        if (res == QDialog::Accepted)
-               result.second = lyx::from_utf8(internal_path(
+               result.second = from_utf8(internal_path(
                                        fromqstr(dlg.selectedFiles()[0])));
        dlg.hide();
 #endif
@@ -144,15 +144,15 @@ FileDialog::Result const FileDialog::open(docstring const & path,
 FileDialog::Result const FileDialog::opendir(docstring const & path,
                                            docstring const & suggested)
 {
-       lyxerr[Debug::GUI] << "Select with path \"" << lyx::to_utf8(path)
-                          << "\", suggested \"" << lyx::to_utf8(suggested) << '"' << endl;
+       lyxerr[Debug::GUI] << "Select with path \"" << to_utf8(path)
+                          << "\", suggested \"" << to_utf8(suggested) << '"' << endl;
        FileDialog::Result result;
        result.first = FileDialog::Chosen;
 
 #ifdef USE_NATIVE_FILEDIALOG
        docstring const startsWith = from_utf8(
                makeAbsPath(to_utf8(suggested), to_utf8(path)).absFilename());
-       result.second = lyx::from_utf8(internal_path(fromqstr(
+       result.second = from_utf8(internal_path(fromqstr(
                QFileDialog::getExistingDirectory(qApp->focusWidget(),
                toqstr(title_),toqstr(startsWith)))));
 #else
@@ -169,7 +169,7 @@ FileDialog::Result const FileDialog::opendir(docstring const & path,
        int res = dlg.exec();
        lyxerr[Debug::GUI] << "result " << res << endl;
        if (res == QDialog::Accepted)
-               result.second = lyx::from_utf8(internal_path(
+               result.second = from_utf8(internal_path(
                                        fromqstr(dlg.selectedFiles()[0])));
        dlg.hide();
 #endif