summaryrefslogtreecommitdiff
path: root/fpicker/source/win32
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2012-07-13 12:24:33 +0200
committerThomas Arnhold <thomas@arnhold.org>2012-07-13 12:45:58 +0200
commitd436f2063ca7b9a8dfcbf64e599dce82471db139 (patch)
treea9a7d0bc39a67a4c3bdb31eafacd42e0c53d3eb2 /fpicker/source/win32
parentcdaddecc5e3ec93294492b3efc38393c91459e10 (diff)
Remove unused debugging macros
Change-Id: Ib9cebcf3680e1761c25be03715423845de78bb92
Diffstat (limited to 'fpicker/source/win32')
-rw-r--r--fpicker/source/win32/filepicker/VistaFilePicker.cxx36
1 files changed, 0 insertions, 36 deletions
diff --git a/fpicker/source/win32/filepicker/VistaFilePicker.cxx b/fpicker/source/win32/filepicker/VistaFilePicker.cxx
index 92061ded8a7a..a0013a3d7a9f 100644
--- a/fpicker/source/win32/filepicker/VistaFilePicker.cxx
+++ b/fpicker/source/win32/filepicker/VistaFilePicker.cxx
@@ -92,42 +92,6 @@ namespace
}
//-----------------------------------------------------------------------------------------
-#define ENABLE_LOGGING
-
-#define LOGFILE_VISTA "c:\\temp\\vistafiledialog.log"
-
-#ifdef ENABLE_LOGGING
-
- #define LOG_FILE(PARAM_MESSAGE) \
- { \
- FILE* pFile = fopen(LOGFILE_VISTA, "a"); \
- fprintf(pFile, PARAM_MESSAGE); \
- fclose(pFile); \
- }
-
- #define LOG_FILE_1_PARAM(PARAM_MESSAGE, PARAM_1) \
- { \
- FILE* pFile = fopen(LOGFILE_VISTA, "a"); \
- fprintf(pFile, PARAM_MESSAGE, PARAM_1); \
- fclose(pFile); \
- }
-
- #define LOG_FILE_2_PARAM(PARAM_MESSAGE, PARAM_1, PARAM_2) \
- { \
- FILE* pFile = fopen(LOGFILE_VISTA, "a"); \
- fprintf(pFile, PARAM_MESSAGE, PARAM_1, PARAM_2); \
- fclose(pFile); \
- }
-
-#else
-
- #define LOG_FILE(PARAM_MESSAGE)
- #define LOG_FILE_1_PARAM(PARAM_MESSAGE, PARAM_1)
- #define LOG_FILE_2_PARAM(PARAM_MESSAGE, PARAM_1, PARAM_2)
-
-#endif
-
-//-----------------------------------------------------------------------------------------
VistaFilePicker::VistaFilePicker(const css::uno::Reference< css::lang::XMultiServiceFactory >& xSMGR)
: TVistaFilePickerBase (m_aMutex )
, m_xSMGR (xSMGR )