Kaydet (Commit) 2ce78620 authored tarafından Pedro Giffuni's avatar Pedro Giffuni

Uninitialized scalar variable

CID:	1028321, 1028322, 1028323
üst bb122fab
...@@ -3252,8 +3252,8 @@ void SelectionManager::startDrag( ...@@ -3252,8 +3252,8 @@ void SelectionManager::startDrag(
// of our DropTargets at the time of executeDrag we can use // of our DropTargets at the time of executeDrag we can use
// them for a start // them for a start
XLIB_Window aRoot, aParent, aChild; XLIB_Window aRoot, aParent, aChild;
int root_x, root_y, win_x, win_y; int root_x(0), root_y(0), win_x, win_y;
unsigned int mask; unsigned int mask(0);
::std::hash_map< XLIB_Window, DropTargetEntry >::const_iterator it; ::std::hash_map< XLIB_Window, DropTargetEntry >::const_iterator it;
it = m_aDropTargets.begin(); 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