summaryrefslogtreecommitdiff
path: root/fpicker/source/office
diff options
context:
space:
mode:
authorMarcel Metz <mmetz@adrian-broher.net>2012-01-11 10:14:13 +0100
committerDavid Tardon <dtardon@redhat.com>2012-01-16 12:51:33 +0100
commita18123fb97e7c69a7fac6724aaa3a8e2440dae98 (patch)
tree36546217f7fe0f20c6f07e306d0ad68a880ac82e /fpicker/source/office
parent268050960a16af2b404ef3ba42b6185047027e2d (diff)
Replaced DBG_ERRORFILE with SAL_INFO.
Diffstat (limited to 'fpicker/source/office')
-rw-r--r--fpicker/source/office/OfficeControlAccess.cxx8
-rw-r--r--fpicker/source/office/OfficeFilePicker.cxx3
-rw-r--r--fpicker/source/office/iodlg.cxx4
3 files changed, 7 insertions, 8 deletions
diff --git a/fpicker/source/office/OfficeControlAccess.cxx b/fpicker/source/office/OfficeControlAccess.cxx
index 8b8288db36c1..45a3e33f2a22 100644
--- a/fpicker/source/office/OfficeControlAccess.cxx
+++ b/fpicker/source/office/OfficeControlAccess.cxx
@@ -386,7 +386,7 @@ namespace svt
break;
case LISTBOX_FILTER:
- DBG_ERRORFILE( "Use the XFilterManager to access the filter listbox" );
+ SAL_INFO( "fpicker", "Use the XFilterManager to access the filter listbox" );
break;
case LISTBOX_VERSION:
@@ -445,7 +445,7 @@ namespace svt
}
else
{
- DBG_ERRORFILE( "Use the XFilterManager to access the filter listbox" );
+ SAL_INFO( "fpicker", "Use the XFilterManager to access the filter listbox" );
}
break;
@@ -464,7 +464,7 @@ namespace svt
nPropertyId = PROPERTY_FLAG_LISTITEMS;
break;
default:
- DBG_ERRORFILE( "OControlAccess::GetValue: invalid control action for the listbox!" );
+ SAL_INFO( "fpicker", "OControlAccess::GetValue: invalid control action for the listbox!" );
break;
}
break;
@@ -546,7 +546,7 @@ namespace svt
break;
default:
- DBG_ERRORFILE( "Wrong ControlAction for implDoListboxAction()" );
+ SAL_INFO( "fpicker", "Wrong ControlAction for implDoListboxAction()" );
}
}
diff --git a/fpicker/source/office/OfficeFilePicker.cxx b/fpicker/source/office/OfficeFilePicker.cxx
index c5f1a56dbfe2..f789f4b569b7 100644
--- a/fpicker/source/office/OfficeFilePicker.cxx
+++ b/fpicker/source/office/OfficeFilePicker.cxx
@@ -40,7 +40,6 @@
#include <algorithm>
#endif
#include <tools/urlobj.hxx>
-#include <tools/debug.hxx>
#include "svl/svstdarr.hxx"
#include <com/sun/star/uno/Any.hxx>
#include <com/sun/star/ui/dialogs/FilePickerEvent.hpp>
@@ -350,7 +349,7 @@ void SvtFilePicker::notify( sal_Int16 _nEventId, sal_Int16 _nControlId )
m_xListener->dialogSizeChanged();
break;
default:
- DBG_ERRORFILE( "SvtFilePicker::notify(): Unknown event id!" );
+ SAL_INFO( "fpicker", "SvtFilePicker::notify(): Unknown event id!" );
break;
}
}
diff --git a/fpicker/source/office/iodlg.cxx b/fpicker/source/office/iodlg.cxx
index ac2b0a62e877..0ab97df93d7b 100644
--- a/fpicker/source/office/iodlg.cxx
+++ b/fpicker/source/office/iodlg.cxx
@@ -2005,7 +2005,7 @@ void SvtFileDialog::EnableControl( Control* _pControl, sal_Bool _bEnable )
{
if ( !_pControl )
{
- DBG_ERRORFILE( "SvtFileDialog::EnableControl: invalid control!" );
+ SAL_INFO( "fpicker", "SvtFileDialog::EnableControl: invalid control!" );
return;
}
@@ -2871,7 +2871,7 @@ Control* SvtFileDialog::getControl( sal_Int16 _nControlId, sal_Bool _bLabelContr
break;
default:
- DBG_ERRORFILE( "SvtFileDialog::getControl: invalid id!" );
+ SAL_INFO( "fpicker", "SvtFileDialog::getControl: invalid id!" );
}
return pReturn;
}