goldendict-ng/src/initializing.cc

17 lines
465 B
C++
Raw Normal View History

/* This file is (c) 2008-2009 Konstantin Isakov <ikm@users.berlios.de>
* 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();
}