summaryrefslogtreecommitdiff
path: root/fpicker
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2012-08-08 13:53:08 +0200
committerThomas Arnhold <thomas@arnhold.org>2012-08-08 13:53:54 +0200
commit2beba8f93e7991372dd45351c92c50f7850dc46a (patch)
tree15dfae00223ccc7fdbfe2e06a3d931b97fded890 /fpicker
parent49ad17e2b1aef65fad357b9c540ab36189233dd3 (diff)
reduce ascii noise and useless comments
Change-Id: I317058e3b25cebb7c1d89361636261c5f16a84d4
Diffstat (limited to 'fpicker')
-rw-r--r--fpicker/source/aqua/FPServiceInfo.hxx4
-rw-r--r--fpicker/source/aqua/resourceprovider.hxx4
-rw-r--r--fpicker/source/win32/filepicker/FPServiceInfo.hxx4
-rw-r--r--fpicker/source/win32/filepicker/FilePicker.cxx4
-rw-r--r--fpicker/source/win32/filepicker/IVistaFilePickerInternalNotify.hxx4
-rw-r--r--fpicker/source/win32/filepicker/PreviewCtrl.cxx4
-rw-r--r--fpicker/source/win32/filepicker/VistaFilePicker.cxx4
-rw-r--r--fpicker/source/win32/filepicker/VistaFilePicker.hxx4
-rw-r--r--fpicker/source/win32/filepicker/VistaFilePickerEventHandler.cxx4
-rw-r--r--fpicker/source/win32/filepicker/VistaFilePickerEventHandler.hxx4
-rw-r--r--fpicker/source/win32/filepicker/VistaFilePickerImpl.cxx4
-rw-r--r--fpicker/source/win32/filepicker/VistaFilePickerImpl.hxx4
-rw-r--r--fpicker/source/win32/filepicker/WinFileOpenImpl.hxx4
-rw-r--r--fpicker/source/win32/filepicker/asyncrequests.cxx4
-rw-r--r--fpicker/source/win32/filepicker/asyncrequests.hxx4
-rw-r--r--fpicker/source/win32/filepicker/controlaccess.hxx4
-rw-r--r--fpicker/source/win32/filepicker/dibpreview.cxx4
-rw-r--r--fpicker/source/win32/filepicker/helppopupwindow.cxx4
-rw-r--r--fpicker/source/win32/filepicker/vistatypes.h4
-rw-r--r--fpicker/source/win32/folderpicker/FOPServiceInfo.hxx4
-rw-r--r--fpicker/source/win32/folderpicker/FolderPicker.cxx4
-rw-r--r--fpicker/source/win32/folderpicker/FopEvtDisp.hxx3
-rw-r--r--fpicker/source/win32/folderpicker/WinFOPImpl.hxx4
-rw-r--r--fpicker/source/win32/folderpicker/workbench/Test_fops.cxx4
-rw-r--r--fpicker/source/win32/misc/WinImplHelper.hxx4
-rw-r--r--fpicker/source/win32/misc/resourceprovider.hxx4
26 files changed, 0 insertions, 103 deletions
diff --git a/fpicker/source/aqua/FPServiceInfo.hxx b/fpicker/source/aqua/FPServiceInfo.hxx
index c1b64c8714e0..ad42d07fe735 100644
--- a/fpicker/source/aqua/FPServiceInfo.hxx
+++ b/fpicker/source/aqua/FPServiceInfo.hxx
@@ -20,10 +20,6 @@
#ifndef _FPSERVICEINFO_HXX_
#define _FPSERVICEINFO_HXX_
-//------------------------------------------------------------------------
-// defines
-//------------------------------------------------------------------------
-
// the service names
#define FILE_PICKER_SERVICE_NAME "com.sun.star.ui.dialogs.AquaFilePicker"
#define FOLDER_PICKER_SERVICE_NAME "com.sun.star.ui.dialogs.AquaFolderPicker"
diff --git a/fpicker/source/aqua/resourceprovider.hxx b/fpicker/source/aqua/resourceprovider.hxx
index 4fdb6adc1256..4a3d63227919 100644
--- a/fpicker/source/aqua/resourceprovider.hxx
+++ b/fpicker/source/aqua/resourceprovider.hxx
@@ -34,10 +34,6 @@
#define FILE_PICKER_FILE_TYPE 504
#define FILE_PICKER_OVERWRITE 505
-//------------------------------------------------------------------------
-// declarations
-//------------------------------------------------------------------------
-
class CResourceProvider_Impl;
class CResourceProvider
diff --git a/fpicker/source/win32/filepicker/FPServiceInfo.hxx b/fpicker/source/win32/filepicker/FPServiceInfo.hxx
index f6188bc45ad6..01b1bbf2f866 100644
--- a/fpicker/source/win32/filepicker/FPServiceInfo.hxx
+++ b/fpicker/source/win32/filepicker/FPServiceInfo.hxx
@@ -21,10 +21,6 @@
#ifndef _FPSERVICEINFO_HXX_
#define _FPSERVICEINFO_HXX_
-//------------------------------------------------------------------------
-// defines
-//------------------------------------------------------------------------
-
// the service name is a description of a set of
// interfaces (is the same as component categories in COM)
diff --git a/fpicker/source/win32/filepicker/FilePicker.cxx b/fpicker/source/win32/filepicker/FilePicker.cxx
index f7828100f761..cc6691e8b1ad 100644
--- a/fpicker/source/win32/filepicker/FilePicker.cxx
+++ b/fpicker/source/win32/filepicker/FilePicker.cxx
@@ -41,10 +41,6 @@ using namespace com::sun::star;
using namespace ::com::sun::star::ui::dialogs;
using namespace ::com::sun::star::ui::dialogs::TemplateDescription;
-//------------------------------------------------------------------------
-// defines
-//------------------------------------------------------------------------
-
#define FILE_PICKER_DLL_NAME TEXT("fps.dll")
//------------------------------------------------------------------------
diff --git a/fpicker/source/win32/filepicker/IVistaFilePickerInternalNotify.hxx b/fpicker/source/win32/filepicker/IVistaFilePickerInternalNotify.hxx
index 98724d45fa19..2800b63202a8 100644
--- a/fpicker/source/win32/filepicker/IVistaFilePickerInternalNotify.hxx
+++ b/fpicker/source/win32/filepicker/IVistaFilePickerInternalNotify.hxx
@@ -28,10 +28,6 @@
#include <shobjidl.h>
-//-----------------------------------------------------------------------------
-// namespace
-//-----------------------------------------------------------------------------
-
#ifdef css
#error "Clash on using CSS as namespace define."
#else
diff --git a/fpicker/source/win32/filepicker/PreviewCtrl.cxx b/fpicker/source/win32/filepicker/PreviewCtrl.cxx
index c09c13c14c74..43eee4a49672 100644
--- a/fpicker/source/win32/filepicker/PreviewCtrl.cxx
+++ b/fpicker/source/win32/filepicker/PreviewCtrl.cxx
@@ -31,10 +31,6 @@
#include <ocidl.h>
#include <olectl.h>
-//------------------------------------------------------------------------
-// defines
-//------------------------------------------------------------------------
-
#define PREVIEWWND_CLASS_NAME TEXT("PreviewWnd###")
#define HIMETRIC_INCH 2540
diff --git a/fpicker/source/win32/filepicker/VistaFilePicker.cxx b/fpicker/source/win32/filepicker/VistaFilePicker.cxx
index aeec19768bea..f05aefc97f54 100644
--- a/fpicker/source/win32/filepicker/VistaFilePicker.cxx
+++ b/fpicker/source/win32/filepicker/VistaFilePicker.cxx
@@ -61,10 +61,6 @@ namespace fpicker{
namespace win32{
namespace vista{
-//------------------------------------------------------------------------
-// defines
-//------------------------------------------------------------------------
-
#define FILE_PICKER_DLL_NAME TEXT("fps.dll")
//------------------------------------------------------------------------
diff --git a/fpicker/source/win32/filepicker/VistaFilePicker.hxx b/fpicker/source/win32/filepicker/VistaFilePicker.hxx
index 206dbdc2dd2a..86a2784d3f47 100644
--- a/fpicker/source/win32/filepicker/VistaFilePicker.hxx
+++ b/fpicker/source/win32/filepicker/VistaFilePicker.hxx
@@ -40,10 +40,6 @@
#include <cppuhelper/basemutex.hxx>
#include <rtl/ustring.hxx>
-//-----------------------------------------------------------------------------
-// namespace
-//-----------------------------------------------------------------------------
-
namespace css = ::com::sun::star;
namespace fpicker{
diff --git a/fpicker/source/win32/filepicker/VistaFilePickerEventHandler.cxx b/fpicker/source/win32/filepicker/VistaFilePickerEventHandler.cxx
index 0ae95f21464e..4fe1926074b3 100644
--- a/fpicker/source/win32/filepicker/VistaFilePickerEventHandler.cxx
+++ b/fpicker/source/win32/filepicker/VistaFilePickerEventHandler.cxx
@@ -47,10 +47,6 @@ namespace fpicker{
namespace win32{
namespace vista{
-//------------------------------------------------------------------------
-// defines
-//------------------------------------------------------------------------
-
//-----------------------------------------------------------------------------------------
VistaFilePickerEventHandler::VistaFilePickerEventHandler(IVistaFilePickerInternalNotify* pInternalNotify)
: m_nRefCount (0 )
diff --git a/fpicker/source/win32/filepicker/VistaFilePickerEventHandler.hxx b/fpicker/source/win32/filepicker/VistaFilePickerEventHandler.hxx
index eaf4f949ff79..851346d581b3 100644
--- a/fpicker/source/win32/filepicker/VistaFilePickerEventHandler.hxx
+++ b/fpicker/source/win32/filepicker/VistaFilePickerEventHandler.hxx
@@ -40,10 +40,6 @@
#include <cppuhelper/interfacecontainer.h>
#include <osl/interlck.h>
-//-----------------------------------------------------------------------------
-// namespace
-//-----------------------------------------------------------------------------
-
namespace css = ::com::sun::star;
namespace fpicker{
diff --git a/fpicker/source/win32/filepicker/VistaFilePickerImpl.cxx b/fpicker/source/win32/filepicker/VistaFilePickerImpl.cxx
index faf010bbc967..d3d1689ae217 100644
--- a/fpicker/source/win32/filepicker/VistaFilePickerImpl.cxx
+++ b/fpicker/source/win32/filepicker/VistaFilePickerImpl.cxx
@@ -51,10 +51,6 @@ HWND choose_parent_window()
return hwnd_parent;
}
-//-----------------------------------------------------------------------------
-// namespace
-//-----------------------------------------------------------------------------
-
namespace fpicker{
namespace win32{
namespace vista{
diff --git a/fpicker/source/win32/filepicker/VistaFilePickerImpl.hxx b/fpicker/source/win32/filepicker/VistaFilePickerImpl.hxx
index 1d5ef1a4e559..364ed66acccc 100644
--- a/fpicker/source/win32/filepicker/VistaFilePickerImpl.hxx
+++ b/fpicker/source/win32/filepicker/VistaFilePickerImpl.hxx
@@ -54,10 +54,6 @@
#include <osl/conditn.hxx>
#include <rtl/ustring.hxx>
-//-----------------------------------------------------------------------------
-// namespace
-//-----------------------------------------------------------------------------
-
namespace css = ::com::sun::star;
namespace fpicker{
diff --git a/fpicker/source/win32/filepicker/WinFileOpenImpl.hxx b/fpicker/source/win32/filepicker/WinFileOpenImpl.hxx
index c3d7a0bdcfe3..d74b3eeead3f 100644
--- a/fpicker/source/win32/filepicker/WinFileOpenImpl.hxx
+++ b/fpicker/source/win32/filepicker/WinFileOpenImpl.hxx
@@ -37,10 +37,6 @@
#include <vector>
#include <osl/conditn.hxx>
-//------------------------------------------------------------------------
-// deklarations
-//------------------------------------------------------------------------
-
// forward declaration
class CFilePicker;
class CFilePickerState;
diff --git a/fpicker/source/win32/filepicker/asyncrequests.cxx b/fpicker/source/win32/filepicker/asyncrequests.cxx
index 69bbd05e6e61..8ceea5198186 100644
--- a/fpicker/source/win32/filepicker/asyncrequests.cxx
+++ b/fpicker/source/win32/filepicker/asyncrequests.cxx
@@ -21,10 +21,6 @@
#include <vcl/svapp.hxx>
#include <osl/mutex.hxx>
-//-----------------------------------------------------------------------------
-// namespace
-//-----------------------------------------------------------------------------
-
namespace fpicker{
namespace win32{
namespace vista{
diff --git a/fpicker/source/win32/filepicker/asyncrequests.hxx b/fpicker/source/win32/filepicker/asyncrequests.hxx
index 50067779a17c..6e3fc5233220 100644
--- a/fpicker/source/win32/filepicker/asyncrequests.hxx
+++ b/fpicker/source/win32/filepicker/asyncrequests.hxx
@@ -28,10 +28,6 @@
#include <queue>
#include <boost/shared_ptr.hpp>
-//-----------------------------------------------------------------------------
-// namespace
-//-----------------------------------------------------------------------------
-
namespace css = ::com::sun::star;
namespace fpicker{
diff --git a/fpicker/source/win32/filepicker/controlaccess.hxx b/fpicker/source/win32/filepicker/controlaccess.hxx
index a0a47ee78b39..ee990f6e2cb6 100644
--- a/fpicker/source/win32/filepicker/controlaccess.hxx
+++ b/fpicker/source/win32/filepicker/controlaccess.hxx
@@ -33,10 +33,6 @@
#endif
#include <com/sun/star/uno/Any.hxx>
-//------------------------------------------------------------------------
-// deklarations
-//------------------------------------------------------------------------
-
typedef void ( SAL_CALL *CTRL_SETVALUE_FUNCTION_T)( HWND, const ::com::sun::star::uno::Any&, const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface >&, sal_Int16 );
typedef ::com::sun::star::uno::Any ( SAL_CALL *CTRL_GETVALUE_FUNCTION_T )( HWND );
diff --git a/fpicker/source/win32/filepicker/dibpreview.cxx b/fpicker/source/win32/filepicker/dibpreview.cxx
index fdaae96ee131..e019fd0aac42 100644
--- a/fpicker/source/win32/filepicker/dibpreview.cxx
+++ b/fpicker/source/win32/filepicker/dibpreview.cxx
@@ -47,10 +47,6 @@ namespace /* private */
const LPCTSTR CURRENT_INSTANCE = TEXT("CurrInst");
};
-//------------------------------------------------------------------------
-// defines
-//------------------------------------------------------------------------
-
#define PREVIEWWND_CLASS_NAME TEXT("DIBPreviewWnd###")
// means 3 pixel left and 3 pixel right
diff --git a/fpicker/source/win32/filepicker/helppopupwindow.cxx b/fpicker/source/win32/filepicker/helppopupwindow.cxx
index af7449d9e1e0..7b0ddf2262de 100644
--- a/fpicker/source/win32/filepicker/helppopupwindow.cxx
+++ b/fpicker/source/win32/filepicker/helppopupwindow.cxx
@@ -39,10 +39,6 @@ namespace /* private */
};
-//------------------------------------------------------------------------
-// defines
-//------------------------------------------------------------------------
-
#define HELPPOPUPWND_CLASS_NAME TEXT("hlppopupwnd###")
const sal_Int32 MAX_CHARS_PER_LINE = 55;
diff --git a/fpicker/source/win32/filepicker/vistatypes.h b/fpicker/source/win32/filepicker/vistatypes.h
index 97cff510f34b..3f95918c336a 100644
--- a/fpicker/source/win32/filepicker/vistatypes.h
+++ b/fpicker/source/win32/filepicker/vistatypes.h
@@ -23,10 +23,6 @@
#include "comptr.hxx"
#include <shobjidl.h>
-//-----------------------------------------------------------------------------
-// namespace
-//-----------------------------------------------------------------------------
-
#ifdef css
#error "Clash on using CSS as namespace define."
#else
diff --git a/fpicker/source/win32/folderpicker/FOPServiceInfo.hxx b/fpicker/source/win32/folderpicker/FOPServiceInfo.hxx
index 42ae1d225132..14c06b91fadb 100644
--- a/fpicker/source/win32/folderpicker/FOPServiceInfo.hxx
+++ b/fpicker/source/win32/folderpicker/FOPServiceInfo.hxx
@@ -21,10 +21,6 @@
#ifndef _FOPSERVICEINFO_HXX_
#define _FOPSERVICEINFO_HXX_
-//------------------------------------------------------------------------
-// defines
-//------------------------------------------------------------------------
-
// the service name is a description of a set of
// interfaces (is the same as component categories in COM)
diff --git a/fpicker/source/win32/folderpicker/FolderPicker.cxx b/fpicker/source/win32/folderpicker/FolderPicker.cxx
index a7e8f90a5369..953c50d665b3 100644
--- a/fpicker/source/win32/folderpicker/FolderPicker.cxx
+++ b/fpicker/source/win32/folderpicker/FolderPicker.cxx
@@ -41,10 +41,6 @@ using osl::MutexGuard;
using namespace cppu;
using namespace com::sun::star::ui::dialogs;
-//------------------------------------------------------------------------
-// defines
-//------------------------------------------------------------------------
-
#define FOLDERPICKER_IMPL_NAME "com.sun.star.ui.dialogs.Win32FolderPicker"
//------------------------------------------------------------------------
diff --git a/fpicker/source/win32/folderpicker/FopEvtDisp.hxx b/fpicker/source/win32/folderpicker/FopEvtDisp.hxx
index b1c59b34a0db..240a9f336b4a 100644
--- a/fpicker/source/win32/folderpicker/FopEvtDisp.hxx
+++ b/fpicker/source/win32/folderpicker/FopEvtDisp.hxx
@@ -23,9 +23,6 @@
#include <com/sun/star/lang/EventObject.hpp>
-//------------------------------------------------------------------------
-// deklarations
-//------------------------------------------------------------------------
class CFOPEventDispatcher
{
public:
diff --git a/fpicker/source/win32/folderpicker/WinFOPImpl.hxx b/fpicker/source/win32/folderpicker/WinFOPImpl.hxx
index 8d362b4abc81..77abfa2e2efd 100644
--- a/fpicker/source/win32/folderpicker/WinFOPImpl.hxx
+++ b/fpicker/source/win32/folderpicker/WinFOPImpl.hxx
@@ -30,10 +30,6 @@
class CFolderPicker;
-//------------------------------------------------------------------------
-// deklarations
-//------------------------------------------------------------------------
-
class CWinFolderPickerImpl : public CMtaFolderPicker
{
public:
diff --git a/fpicker/source/win32/folderpicker/workbench/Test_fops.cxx b/fpicker/source/win32/folderpicker/workbench/Test_fops.cxx
index 50f3ce521dea..de842138a70d 100644
--- a/fpicker/source/win32/folderpicker/workbench/Test_fops.cxx
+++ b/fpicker/source/win32/folderpicker/workbench/Test_fops.cxx
@@ -53,10 +53,6 @@ using namespace ::com::sun::star::lang ;
using namespace ::com::sun::star::ui::dialogs;
using namespace std ;
-//--------------------------------------------------------------
-// defines
-//--------------------------------------------------------------
-
#define RDB_SYSPATH "D:\\Projects\\gsl\\sysui\\wntmsci7\\bin\\applicat.rdb"
//--------------------------------------------------------------
diff --git a/fpicker/source/win32/misc/WinImplHelper.hxx b/fpicker/source/win32/misc/WinImplHelper.hxx
index 41557b24f2f7..9c6a69ddab80 100644
--- a/fpicker/source/win32/misc/WinImplHelper.hxx
+++ b/fpicker/source/win32/misc/WinImplHelper.hxx
@@ -34,10 +34,6 @@
#include <com/sun/star/uno/Any.hxx>
#include <com/sun/star/lang/IllegalArgumentException.hpp>
-//------------------------------------------------------------------------
-// deklarations
-//------------------------------------------------------------------------
-
bool SAL_CALL IsWindowsVistaOrNewer();
// set actions
diff --git a/fpicker/source/win32/misc/resourceprovider.hxx b/fpicker/source/win32/misc/resourceprovider.hxx
index dbd1c2e84062..852b225bf30c 100644
--- a/fpicker/source/win32/misc/resourceprovider.hxx
+++ b/fpicker/source/win32/misc/resourceprovider.hxx
@@ -25,10 +25,6 @@
#include <rtl/ustring.hxx>
-//------------------------------------------------------------------------
-// deklarations
-//------------------------------------------------------------------------
-
class CResourceProvider_Impl;
class CResourceProvider