Skip to content

Commit

Permalink
Very small change that fixes valgrind warnings about uninitialised va…
Browse files Browse the repository at this point in the history
…riables.. Fixes: . Appoved by Alex Launi.
  • Loading branch information
thomir authored and Tarmac committed Jan 19, 2012
2 parents 2a42eb1 + 1bf0227 commit 5f4745d
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions plugins/unityshell/src/PanelController.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,11 @@ Controller::Impl::Impl()
: opacity_(1.0f)
, opacity_maximized_toggle_(false)
, open_menu_start_received_(false)
, menus_fadein_(0)
, menus_fadeout_(0)
, menus_discovery_(0)
, menus_discovery_fadein_(0)
, menus_discovery_fadeout_(0)
{
UScreen* screen = UScreen::GetDefault();
screen->changed.connect(sigc::mem_fun(this, &Impl::OnScreenChanged));
Expand Down

0 comments on commit 5f4745d

Please sign in to comment.