]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/QBibtexDialog.C
clean up the function renaming cleanup
[lyx.git] / src / frontends / qt4 / QBibtexDialog.C
index 11ea7a06afa20e4e5710ad777e993c1f0afda235..a682a65fd316fe952319cdd568da20cca84c707d 100644 (file)
@@ -29,7 +29,7 @@
 #include <qlineedit.h>
 #include <q3listbox.h>
 
-using lyx::support::ChangeExtension;
+using lyx::support::changeExtension;
 using lyx::support::trim;
 
 using std::string;
@@ -111,7 +111,7 @@ void QBibtexDialog::browsePressed()
        string const file = form_->controller().browseBst("");
 
        if (!file.empty()) {
-               string const filen = ChangeExtension(file, "");
+               string const filen = changeExtension(file, "");
                bool present = false;
                unsigned int pres = 0;
 
@@ -136,7 +136,7 @@ void QBibtexDialog::browseBibPressed()
        string const file = trim(form_->controller().browseBib(""));
 
        if (!file.empty()) {
-               string const f = ChangeExtension(file, "");
+               string const f = changeExtension(file, "");
                bool present = false;
 
                for (unsigned int i = 0; i != add_->bibLB->count(); i++) {
@@ -180,7 +180,7 @@ void QBibtexDialog::addDatabase()
        }
 
        if (!file.empty()) {
-               QString const f = toqstr(ChangeExtension(file, ""));
+               QString const f = toqstr(changeExtension(file, ""));
                if ((databaseLB->findItem(f)) == 0)
                        databaseLB->insertItem(f);
        }