wordlist.cpp 439 B

123456789101112131415161718192021222324
  1. #include "wordlist.h"
  2. #include <QVariant>
  3. #include <QImage>
  4. #include <QPixmap>
  5. #include <kpushbutton.h>
  6. WordList::WordList(QWidget* parent, const char* name, bool modal, Qt::WindowFlags fl)
  7. : QDialog(parent, name, modal, fl)
  8. {
  9. setupUi(this);
  10. okButton->setGuiItem(KStandardGuiItem::Ok);
  11. cancelButton->setGuiItem(KStandardGuiItem::Cancel);
  12. }
  13. WordList::~WordList()
  14. {
  15. }
  16. void WordList::languageChange()
  17. {
  18. retranslateUi(this);
  19. }