diff options
Diffstat (limited to 'rbutil/rbutilqt/uninstallwindow.cpp')
-rw-r--r-- | rbutil/rbutilqt/uninstallwindow.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/rbutil/rbutilqt/uninstallwindow.cpp b/rbutil/rbutilqt/uninstallwindow.cpp index fc47840b78..ab25fd2179 100644 --- a/rbutil/rbutilqt/uninstallwindow.cpp +++ b/rbutil/rbutilqt/uninstallwindow.cpp | |||
@@ -89,3 +89,13 @@ void UninstallWindow::UninstallMethodChanged(bool complete) | |||
89 | ui.smartGroupBox->setEnabled(true); | 89 | ui.smartGroupBox->setEnabled(true); |
90 | } | 90 | } |
91 | 91 | ||
92 | |||
93 | void UninstallWindow::changeEvent(QEvent *e) | ||
94 | { | ||
95 | if(e->type() == QEvent::LanguageChange) { | ||
96 | ui.retranslateUi(this); | ||
97 | } else { | ||
98 | QWidget::changeEvent(e); | ||
99 | } | ||
100 | } | ||
101 | |||