diff options
author | John Fultz <jfultz@wolfram.com> | 2015-08-18 10:30:10 -0500 |
---|---|---|
committer | John Fultz <jfultz@wolfram.com> | 2015-08-18 10:30:10 -0500 |
commit | f814628b3aabef20db3320a5e58217f758fa2760 (patch) | |
tree | 85d192532fb81c8c5003a199775103c15a70d136 /quacker/settings.h | |
parent | dc92d571f4f97f6420fdf1a94cc41c1d2808d71b (diff) |
Populate alphabet popup in lexicon dialog.
Moved Settings::populateComboFromFileNames() to be a
static method, then invoked it from the lexicon dialog.
Diffstat (limited to 'quacker/settings.h')
-rw-r--r-- | quacker/settings.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/quacker/settings.h b/quacker/settings.h index ee1b59a..cee0562 100644 --- a/quacker/settings.h +++ b/quacker/settings.h @@ -39,6 +39,9 @@ public: static Settings *self(); + // load up an item list based on a list of filenames + static void populateComboFromFilenames(QComboBox* combo, const QString &path, const QString &label); + signals: void refreshViews(); @@ -91,9 +94,6 @@ private: // populate the popup based on what's in QSettings void loadBoardNameCombo(); - // load up an item list based on a list of filenames - void populateComboFromFilenames(QComboBox* combo, const QString &path, const QString &label); - static Settings *m_self; }; |