mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-23 20:14:05 +00:00
Compare commits
4 commits
f6434f4219
...
dcc4579544
Author | SHA1 | Date | |
---|---|---|---|
dcc4579544 | |||
d3ad40f988 | |||
081cba6b23 | |||
59f9b3d04f |
|
@ -53,9 +53,8 @@ Group::Group( Config::Group const & cfgGroup,
|
|||
}
|
||||
}
|
||||
|
||||
Group::Group( QString name_ ):
|
||||
id( 0 ),
|
||||
name( std::move( name_ ) )
|
||||
Group::Group():
|
||||
id( 0 )
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
@ -32,7 +32,7 @@ struct Group
|
|||
Config::Group const & inactiveGroup );
|
||||
|
||||
/// Creates an empty group.
|
||||
explicit Group( QString name_ );
|
||||
explicit Group();
|
||||
|
||||
Group( unsigned id, QString name_ );
|
||||
|
||||
|
|
|
@ -200,7 +200,7 @@ void EditDictionaries::acceptChangedSources( bool rebuildGroups )
|
|||
#ifndef NO_TTS_SUPPORT
|
||||
cfg.voiceEngines = sources.getVoiceEngines();
|
||||
#endif
|
||||
ui.tabs->setUpdatesEnabled( false );
|
||||
setUpdatesEnabled( false );
|
||||
// Those hold pointers to dictionaries, we need to free them.
|
||||
groupInstances.clear();
|
||||
|
||||
|
@ -225,7 +225,7 @@ void EditDictionaries::acceptChangedSources( bool rebuildGroups )
|
|||
connect( groups, &Groups::showDictionaryInfo, this, &EditDictionaries::showDictionaryInfo );
|
||||
connect( orderAndProps, &OrderAndProps::showDictionaryHeadwords, this, &EditDictionaries::showDictionaryHeadwords );
|
||||
}
|
||||
ui.tabs->setUpdatesEnabled( true );
|
||||
setUpdatesEnabled( true );
|
||||
}
|
||||
EditDictionaries::~EditDictionaries()
|
||||
{
|
||||
|
|
|
@ -122,7 +122,7 @@ void DictGroupWidget::groupIconActivated( int index )
|
|||
|
||||
Config::Group DictGroupWidget::makeGroup() const
|
||||
{
|
||||
Instances::Group g( "" );
|
||||
Instances::Group g;
|
||||
|
||||
g.id = groupId;
|
||||
|
||||
|
|
|
@ -135,7 +135,7 @@ OrderAndProps::OrderAndProps( QWidget * parent,
|
|||
|
||||
Config::Group OrderAndProps::getCurrentDictionaryOrder() const
|
||||
{
|
||||
Instances::Group g( "" );
|
||||
Instances::Group g;
|
||||
|
||||
g.dictionaries = ui.dictionaryOrder->getCurrentDictionaries();
|
||||
|
||||
|
@ -144,7 +144,7 @@ Config::Group OrderAndProps::getCurrentDictionaryOrder() const
|
|||
|
||||
Config::Group OrderAndProps::getCurrentInactiveDictionaries() const
|
||||
{
|
||||
Instances::Group g( "" );
|
||||
Instances::Group g;
|
||||
|
||||
g.dictionaries = ui.inactiveDictionaries->getCurrentDictionaries();
|
||||
|
||||
|
|
Loading…
Reference in a new issue