mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-23 16:04:06 +00:00
1
This commit is contained in:
parent
5bef4cef22
commit
5092ebe2ee
|
@ -224,7 +224,7 @@ void loadDictionaries( QWidget * parent,
|
|||
|
||||
loadDicts.wait();
|
||||
|
||||
if ( loadDicts.getExceptionText().size() ) {
|
||||
if ( !loadDicts.getExceptionText().empty() ) {
|
||||
QMessageBox::critical( parent,
|
||||
QCoreApplication::translate( "LoadDictionaries", "Error loading dictionaries" ),
|
||||
QString::fromUtf8( loadDicts.getExceptionText().c_str() ) );
|
||||
|
|
|
@ -183,9 +183,9 @@ void EditDictionaries::acceptChangedSources( bool rebuildGroups )
|
|||
{
|
||||
dictionariesChanged = true;
|
||||
|
||||
Config::Groups savedGroups = cfg.groups;
|
||||
Config::Group savedOrder = cfg.dictionaryOrder;
|
||||
Config::Group savedInactive = cfg.inactiveDictionaries;
|
||||
Config::Groups savedGroups = groups->getGroups();
|
||||
Config::Group savedOrder = orderAndProps->getCurrentDictionaryOrder();
|
||||
Config::Group savedInactive = orderAndProps->getCurrentInactiveDictionaries();
|
||||
|
||||
cfg.paths = sources.getPaths();
|
||||
cfg.soundDirs = sources.getSoundDirs();
|
||||
|
|
Loading…
Reference in a new issue