summaryrefslogtreecommitdiff
path: root/fpicker
diff options
context:
space:
mode:
authorTino Rachui <tra@openoffice.org>2002-02-21 14:01:13 +0000
committerTino Rachui <tra@openoffice.org>2002-02-21 14:01:13 +0000
commit54433d643da3bb6e229927a318abed4b1b47017b (patch)
treeb2a856dac78cfe22b47fe97349776a905b748afe /fpicker
parent3ec484a978d2bf86a5242ee23d5964db1e712f9c (diff)
#96112#
Diffstat (limited to 'fpicker')
-rw-r--r--fpicker/source/win32/filepicker/FilePicker.cxx10
-rw-r--r--fpicker/source/win32/filepicker/asynceventnotifier.cxx8
2 files changed, 9 insertions, 9 deletions
diff --git a/fpicker/source/win32/filepicker/FilePicker.cxx b/fpicker/source/win32/filepicker/FilePicker.cxx
index 75b7f4982100..f1ee162ca8fb 100644
--- a/fpicker/source/win32/filepicker/FilePicker.cxx
+++ b/fpicker/source/win32/filepicker/FilePicker.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: FilePicker.cxx,v $
*
- * $Revision: 1.12 $
+ * $Revision: 1.13 $
*
- * last change: $Author: tra $ $Date: 2002-02-21 14:46:49 $
+ * last change: $Author: tra $ $Date: 2002-02-21 15:01:13 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -278,13 +278,13 @@ OUString SAL_CALL CFilePicker::helpRequested( FilePickerEvent aEvent ) const
aGuard.clear( );
::cppu::OInterfaceContainerHelper* pICHelper =
- rBHelper.aLC.getContainer( getCppuType( ( Reference< XFilePickerListener > * ) 0 ) );
+ rBHelper.getContainer( getCppuType((Reference<XFilePickerListener>*)0));
if ( pICHelper )
{
- ::cppu::OInterfaceIteratorHelper iter( *pICHelper );
+ ::cppu::OInterfaceIteratorHelper iter(*pICHelper);
- while( iter.hasMoreElements( ) )
+ while(iter.hasMoreElements())
{
try
{
diff --git a/fpicker/source/win32/filepicker/asynceventnotifier.cxx b/fpicker/source/win32/filepicker/asynceventnotifier.cxx
index a680a8f11376..40ba455300de 100644
--- a/fpicker/source/win32/filepicker/asynceventnotifier.cxx
+++ b/fpicker/source/win32/filepicker/asynceventnotifier.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: asynceventnotifier.cxx,v $
*
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
- * last change: $Author: tra $ $Date: 2002-02-21 14:45:38 $
+ * last change: $Author: tra $ $Date: 2002-02-21 15:01:13 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -248,11 +248,11 @@ void SAL_CALL CAsyncEventNotifier::run()
removeNextEventRecord();
::cppu::OInterfaceContainerHelper* pICHelper =
- m_rBroadcastHelper.aLC.getContainer(getCppuType((Reference<XFilePickerListener>*)0));
+ m_rBroadcastHelper.getContainer(getCppuType((Reference<XFilePickerListener>*)0));
if ( pICHelper )
{
- ::cppu::OInterfaceIteratorHelper iter( *pICHelper );
+ ::cppu::OInterfaceIteratorHelper iter(*pICHelper);
while( iter.hasMoreElements() )
{