diff options
author | Carsten Driesner <cd@openoffice.org> | 2011-03-16 14:58:35 +0100 |
---|---|---|
committer | Carsten Driesner <cd@openoffice.org> | 2011-03-16 14:58:35 +0100 |
commit | 77857a809994c9f28174803d721a999f83cca2b9 (patch) | |
tree | 506b069aa8f70168cdcf369ed1c93f77f85bfac7 /fpicker | |
parent | 104874537cf87e29f24861db53dd690673fb57c4 (diff) |
fwk167: #i117379# Use bool instead of Windows type BOOL to prevent misuse
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 2506dce59ede..aa784a2f7607 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); - BOOL bIsVisible = ((lStyle & WS_VISIBLE) != 0); + bool bIsVisible = ((lStyle & WS_VISIBLE) != 0); int cx = 0; |