summaryrefslogtreecommitdiff
path: root/fpicker
diff options
context:
space:
mode:
authorTino Rachui <tra@openoffice.org>2001-12-18 12:26:26 +0000
committerTino Rachui <tra@openoffice.org>2001-12-18 12:26:26 +0000
commit399babeab78e324047152d66c129ad028c535957 (patch)
treeeef99635547818091177152082d4dbf391bdcbdf /fpicker
parentbb0df6b3402be5c2bfec4ae1c20446dd54ac802a (diff)
#95987#doesn't fill Event objects with a reference to the filepicker instance anymore because of cyclic links
Diffstat (limited to 'fpicker')
-rw-r--r--fpicker/source/win32/filepicker/WinFileOpenImpl.cxx9
1 files changed, 2 insertions, 7 deletions
diff --git a/fpicker/source/win32/filepicker/WinFileOpenImpl.cxx b/fpicker/source/win32/filepicker/WinFileOpenImpl.cxx
index 9e26bc86e73f..56c3e1808b99 100644
--- a/fpicker/source/win32/filepicker/WinFileOpenImpl.cxx
+++ b/fpicker/source/win32/filepicker/WinFileOpenImpl.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: WinFileOpenImpl.cxx,v $
*
- * $Revision: 1.12 $
+ * $Revision: 1.13 $
*
- * last change: $Author: tra $ $Date: 2001-11-28 13:35:08 $
+ * last change: $Author: tra $ $Date: 2001-12-18 13:26:26 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -797,7 +797,6 @@ void SAL_CALL CWinFileOpenImpl::onSelChanged( HWND hwndListBox )
InitialSetDefaultName( );
FilePickerEvent evt;
- evt.Source = static_cast< XFilePicker* >( m_FilePicker );
m_FilePicker->fileSelectionChanged( evt );
}
@@ -932,7 +931,6 @@ void SAL_CALL CWinFileOpenImpl::onInitDone()
void SAL_CALL CWinFileOpenImpl::onFolderChanged()
{
FilePickerEvent evt;
- evt.Source = static_cast< XFilePicker* >( m_FilePicker );
m_FilePicker->directoryChanged( evt );
}
@@ -946,7 +944,6 @@ void SAL_CALL CWinFileOpenImpl::onTypeChanged( sal_uInt32 nFilterIndex )
FilePickerEvent evt;
evt.ElementId = LISTBOX_FILTER;
- evt.Source = static_cast< XFilePicker* >( m_FilePicker );
m_FilePicker->controlStateChanged( evt );
}
@@ -962,9 +959,7 @@ sal_uInt32 SAL_CALL CWinFileOpenImpl::onCtrlCommand(
if ( ctrlId < ctlFirst )
{
FilePickerEvent evt;
-
evt.ElementId = ctrlId;
- evt.Source = static_cast< XFilePicker* >( m_FilePicker );
m_FilePicker->controlStateChanged( evt );
}