]> git.lyx.org Git - lyx.git/commitdiff
Cosmetics
authorJuergen Spitzmueller <spitz@lyx.org>
Fri, 22 Mar 2019 13:18:17 +0000 (14:18 +0100)
committerJuergen Spitzmueller <spitz@lyx.org>
Fri, 22 Mar 2019 13:18:17 +0000 (14:18 +0100)
src/frontends/qt4/GuiPrefs.cpp
src/frontends/qt4/GuiPrefs.h

index 44ed76a012ab38cee542ac91a152b9612b517cb1..5c9575d699e71431eedecb8a77aadf2cacb4993b 100644 (file)
@@ -3456,8 +3456,8 @@ GuiPreferences::GuiPreferences(GuiView & lv)
        bc().setCancel(buttonBox->button(QDialogButtonBox::Cancel));
        bc().setRestore(buttonBox->button(QDialogButtonBox::Reset));
 
-       glf = new GuiLyXFiles(lv);
-       connect(glf, SIGNAL(fileSelected(QString)),
+       guilyxfiles_ = new GuiLyXFiles(lv);
+       connect(guilyxfiles_, SIGNAL(fileSelected(QString)),
                        this, SLOT(slotFileSelected(QString)));
 }
 
@@ -3565,19 +3565,14 @@ void GuiPreferences::slotFileSelected(QString const file)
 }
 
 
-/** Wrapper around browseFile which tries to provide a filename
-*  relative to the user or system directory. The dir, name and ext
-*  parameters have the same meaning as in the
-*  support::LibFileSearch function.
-*/
 QString GuiPreferences::browseLibFile(QString const & dir,
        QString const & name, QString const & ext)
 {
        uifile_.clear();
 
-       glf->passParams(fromqstr(dir));
-       glf->selectItem(name);
-       glf->exec();
+       guilyxfiles_->passParams(fromqstr(dir));
+       guilyxfiles_->selectItem(name);
+       guilyxfiles_->exec();
 
        QString const result = uifile_;
 
index a20f3d028faa579231294da4364b58260b4374a2..df16fde51b04adf3eaaa2f4ee760c7fb1a707b83 100644 (file)
@@ -124,7 +124,7 @@ private:
        /// A list of colors to be dispatched
        std::vector<std::string> colors_;
        /// UI file selector
-       GuiLyXFiles * glf;
+       GuiLyXFiles * guilyxfiles_;
        /// Selected UI file
        QString uifile_;
 };