summaryrefslogtreecommitdiff
path: root/src/plugins/git/branchdialog.cpp
diff options
context:
space:
mode:
authorThorbjørn Lindeijer <thorbjorn.lindeijer@nokia.com>2009-03-17 14:34:27 +0100
committerThorbjørn Lindeijer <thorbjorn.lindeijer@nokia.com>2009-03-17 18:25:44 +0100
commit4e16705a27f5e1193ab9263be8ff24e1df92457e (patch)
tree211a78c58a3a15211de14fc2a3b63fd08ce75010 /src/plugins/git/branchdialog.cpp
parent70d5649428cfaa41fd7883f7aa37880ab84616f7 (diff)
downloadqt-creator-4e16705a27f5e1193ab9263be8ff24e1df92457e.tar.gz
Added changeEvent calls where appropriate
Need to call into the superclass in order not to lose functionality. Was missing in the wizard, hence the many missing occurrences. Reviewed-by: Friedemann Kleint
Diffstat (limited to 'src/plugins/git/branchdialog.cpp')
-rw-r--r--src/plugins/git/branchdialog.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/plugins/git/branchdialog.cpp b/src/plugins/git/branchdialog.cpp
index 5a1aa5d00d..f348ac0188 100644
--- a/src/plugins/git/branchdialog.cpp
+++ b/src/plugins/git/branchdialog.cpp
@@ -258,6 +258,7 @@ void BranchDialog::slotRemoteBranchActivated(const QModelIndex &i)
void BranchDialog::changeEvent(QEvent *e)
{
+ QDialog::changeEvent(e);
switch (e->type()) {
case QEvent::LanguageChange:
m_ui->retranslateUi(this);