diff options
author | Oliver Bolte <obo@openoffice.org> | 2006-10-12 09:54:14 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2006-10-12 09:54:14 +0000 |
commit | 57f725a5209712c0f4c21c855201d9c840573e22 (patch) | |
tree | b88b0e2a8dd2811ff9fd057b7e324848785df6b7 /fpicker | |
parent | d98b7d2ba5d92a39e7b410c012d755ed75449a33 (diff) |
INTEGRATION: CWS sb59 (1.4.100); FILE MERGED
2006/08/10 12:04:53 sb 1.4.100.1: #i67487# Made code warning-free (wntmsci10).
Diffstat (limited to 'fpicker')
-rw-r--r-- | fpicker/source/win32/filepicker/previewadapter.cxx | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/fpicker/source/win32/filepicker/previewadapter.cxx b/fpicker/source/win32/filepicker/previewadapter.cxx index d1bc873ebf39..17843f75a44d 100644 --- a/fpicker/source/win32/filepicker/previewadapter.cxx +++ b/fpicker/source/win32/filepicker/previewadapter.cxx @@ -4,9 +4,9 @@ * * $RCSfile: previewadapter.cxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: obo $ $Date: 2006-09-16 17:57:16 $ + * last change: $Author: obo $ $Date: 2006-10-12 10:54:14 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -101,7 +101,7 @@ public: virtual void SAL_CALL notifyParentSizeChanged(); - virtual void SAL_CALL notifyParentWindowPosChanged(sal_Bool bIsVisible); + virtual void SAL_CALL notifyParentWindowPosChanged(); protected: virtual void SAL_CALL calcRightMargin(); @@ -259,7 +259,7 @@ void SAL_CALL CPreviewAdapterImpl::calcRightMargin() // //----------------------------------------- -void SAL_CALL CPreviewAdapterImpl::notifyParentShow(sal_Bool bShow) +void SAL_CALL CPreviewAdapterImpl::notifyParentShow(sal_Bool) { } @@ -276,7 +276,7 @@ void SAL_CALL CPreviewAdapterImpl::notifyParentSizeChanged() // //----------------------------------------- -void SAL_CALL CPreviewAdapterImpl::notifyParentWindowPosChanged(sal_Bool bIsVisible) +void SAL_CALL CPreviewAdapterImpl::notifyParentWindowPosChanged() { } @@ -432,7 +432,7 @@ class CWin98PreviewAdapterImpl : public CPreviewAdapterImpl public: CWin98PreviewAdapterImpl(HINSTANCE instance); - virtual void SAL_CALL notifyParentWindowPosChanged(sal_Bool bIsVisible); + virtual void SAL_CALL notifyParentWindowPosChanged(); protected: virtual void SAL_CALL rearrangeLayout(); @@ -465,7 +465,7 @@ CWin98PreviewAdapterImpl::CWin98PreviewAdapterImpl(HINSTANCE instance) : // //-------------------------------------------- -void SAL_CALL CWin98PreviewAdapterImpl::notifyParentWindowPosChanged(sal_Bool bIsVisible) +void SAL_CALL CWin98PreviewAdapterImpl::notifyParentWindowPosChanged() { try { @@ -706,7 +706,7 @@ void SAL_CALL CPreviewAdapter::setParent(HWND parent) // //------------------------------- -void SAL_CALL CPreviewAdapter::notifyParentShow(sal_Bool bShow) +void SAL_CALL CPreviewAdapter::notifyParentShow(bool bShow) { m_pImpl->notifyParentShow(bShow); } @@ -724,7 +724,7 @@ void SAL_CALL CPreviewAdapter::notifyParentSizeChanged() // //------------------------------- -void SAL_CALL CPreviewAdapter::notifyParentWindowPosChanged(sal_Bool bIsVisible) +void SAL_CALL CPreviewAdapter::notifyParentWindowPosChanged() { - m_pImpl->notifyParentWindowPosChanged(bIsVisible); + m_pImpl->notifyParentWindowPosChanged(); } |