Kaydet (Commit) ab88b560 authored tarafından Caolán McNamara's avatar Caolán McNamara

CID#1028323 uninitialized scalars

and CID#1028322
and CID#1028321

Change-Id: I6c151ef949755a17fa09c483d2f5f77b02fed08e
üst 0f536843
......@@ -3223,8 +3223,8 @@ void SelectionManager::startDrag(
// of our DropTargets at the time of executeDrag we can use
// them for a start
XLIB_Window aRoot, aParent, aChild;
int root_x, root_y, win_x, win_y;
unsigned int mask;
int root_x(0), root_y(0), win_x(0), win_y(0);
unsigned int mask(0);
::boost::unordered_map< XLIB_Window, DropTargetEntry >::const_iterator it;
it = m_aDropTargets.begin();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment