Kaydet (Commit) 810824d1 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

vcl/settings.hxx "drag full options API" uses sal_uLong

...for better or worse

Change-Id: I8069da4a544cb6a69cbcd7243469bc6ea7b112a4
üst e8fe1582
......@@ -1866,7 +1866,7 @@ void Desktop::OverrideSystemSettings( AllSettings& rSettings )
StyleSettings hStyleSettings = rSettings.GetStyleSettings();
MouseSettings hMouseSettings = rSettings.GetMouseSettings();
sal_uInt32 nDragFullOptions = hStyleSettings.GetDragFullOptions();
sal_uLong nDragFullOptions = hStyleSettings.GetDragFullOptions();
SvtTabAppearanceCfg aAppearanceCfg;
sal_uInt16 nDragMode = aAppearanceCfg.GetDragMode();
......@@ -1876,7 +1876,7 @@ void Desktop::OverrideSystemSettings( AllSettings& rSettings )
nDragFullOptions |= DRAGFULL_OPTION_ALL;
break;
case DragFrame:
nDragFullOptions &= ((sal_uInt32)~DRAGFULL_OPTION_ALL);
nDragFullOptions &= ~DRAGFULL_OPTION_ALL;
break;
case DragSystemDep:
default:
......
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