mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-27 19:24:08 +00:00
17 lines
461 B
C++
17 lines
461 B
C++
|
/* This file is (c) 2008-2009 Konstantin Isakov <ikm@users.sf.net>
|
||
|
* Part of GoldenDict. Licensed under GPLv3 or later, see the LICENSE file */
|
||
|
|
||
|
#include "initializing.hh"
|
||
|
|
||
|
Initializing::Initializing( QWidget * parent ): QDialog( parent )
|
||
|
{
|
||
|
ui.setupUi( this );
|
||
|
}
|
||
|
|
||
|
void Initializing::indexing( QString const & dictionaryName )
|
||
|
{
|
||
|
ui.operation->setText( tr( "Please wait while indexing dictionary" ) );
|
||
|
ui.dictionary->setText( dictionaryName );
|
||
|
show();
|
||
|
}
|