diff options
Diffstat (limited to 'rbutil/rbutilqt/themesinstallwindow.cpp')
-rw-r--r-- | rbutil/rbutilqt/themesinstallwindow.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/rbutil/rbutilqt/themesinstallwindow.cpp b/rbutil/rbutilqt/themesinstallwindow.cpp index cb06b47b1f..272a7b3dca 100644 --- a/rbutil/rbutilqt/themesinstallwindow.cpp +++ b/rbutil/rbutilqt/themesinstallwindow.cpp | |||
@@ -359,3 +359,13 @@ void ThemesInstallWindow::accept() | |||
359 | 359 | ||
360 | } | 360 | } |
361 | 361 | ||
362 | |||
363 | void ThemesInstallWindow::changeEvent(QEvent *e) | ||
364 | { | ||
365 | if(e->type() == QEvent::LanguageChange) { | ||
366 | ui.retranslateUi(this); | ||
367 | } else { | ||
368 | QWidget::changeEvent(e); | ||
369 | } | ||
370 | } | ||
371 | |||