diff options
author | Carsten Driesner <cd@openoffice.org> | 2011-03-16 13:00:38 +0100 |
---|---|---|
committer | Carsten Driesner <cd@openoffice.org> | 2011-03-16 13:00:38 +0100 |
commit | 10d74f6c33d5f678254760fca296a5d275ccfff9 (patch) | |
tree | 626ccab4da98bf42521227cb1928a3e215801661 /fpicker | |
parent | 71ac08253fa7af25d5f4d62bf053ddc4fbe2c44f (diff) |
fwk167: #i117378# Use BOOL instead of sal_Bool for Windows specific code.
Diffstat (limited to 'fpicker')
-rw-r--r-- | fpicker/source/win32/filepicker/previewadapter.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fpicker/source/win32/filepicker/previewadapter.cxx b/fpicker/source/win32/filepicker/previewadapter.cxx index a145c2af563d..b341a5b8252f 100644 --- a/fpicker/source/win32/filepicker/previewadapter.cxx +++ b/fpicker/source/win32/filepicker/previewadapter.cxx @@ -308,7 +308,7 @@ void SAL_CALL CPreviewAdapterImpl::rearrangeLayout() // style bit of the FileOpen dialog must be set after that // message LONG lStyle = GetWindowLong(prvwnd,GWL_STYLE); - sal_Bool bIsVisible = (sal_Bool)(lStyle & WS_VISIBLE); + BOOL bIsVisible = (BOOL)(lStyle & WS_VISIBLE); int cx = 0; |