summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--vcl/source/control/morebtn.cxx5
1 files changed, 1 insertions, 4 deletions
diff --git a/vcl/source/control/morebtn.cxx b/vcl/source/control/morebtn.cxx
index f40bc376d5e0..90751318519c 100644
--- a/vcl/source/control/morebtn.cxx
+++ b/vcl/source/control/morebtn.cxx
@@ -154,10 +154,6 @@ void MoreButton::Click()
mbState = !mbState;
ShowState();
- // Hier den Click-Handler rufen, damit vorher die Controls initialisiert
- // werden koennen
- PushButton::Click();
-
// Je nach Status die Fenster updaten
if ( mbState )
{
@@ -198,6 +194,7 @@ void MoreButton::Click()
}
}
}
+ PushButton::Click();
}
// -----------------------------------------------------------------------