diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-02-09 09:49:17 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-02-09 09:55:56 +0100 |
commit | 810824d10df45944d223db1efab4b3cb99161e33 (patch) | |
tree | a1952cf65b64eb5c12508a04e28cf77411a76482 /desktop | |
parent | e8fe1582372983c6e3ca5b9cbead097ed670f504 (diff) |
vcl/settings.hxx "drag full options API" uses sal_uLong
...for better or worse
Change-Id: I8069da4a544cb6a69cbcd7243469bc6ea7b112a4
Diffstat (limited to 'desktop')
-rw-r--r-- | desktop/source/app/app.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/desktop/source/app/app.cxx b/desktop/source/app/app.cxx index 59d984d2fdb9..145c0c15b68d 100644 --- a/desktop/source/app/app.cxx +++ b/desktop/source/app/app.cxx @@ -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: |