summaryrefslogtreecommitdiff
path: root/framework
diff options
context:
space:
mode:
authorAndreas Schlüns <as@openoffice.org>2000-12-19 09:12:24 +0000
committerAndreas Schlüns <as@openoffice.org>2000-12-19 09:12:24 +0000
commit94597e63999a851a4d69759ead1d3a544a6b411d (patch)
tree8fad1470c7d6d658c6e3311e1f5f9c8fc19d31a1 /framework
parent3bc4aa67552901eb41d974db29c18dfb055c5aa7 (diff)
use given filter string for plugin load
Diffstat (limited to 'framework')
-rw-r--r--framework/inc/macros/debug/plugin.hxx16
1 files changed, 10 insertions, 6 deletions
diff --git a/framework/inc/macros/debug/plugin.hxx b/framework/inc/macros/debug/plugin.hxx
index 8cb05cbc7d15..dd815d36b8c4 100644
--- a/framework/inc/macros/debug/plugin.hxx
+++ b/framework/inc/macros/debug/plugin.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: plugin.hxx,v $
*
- * $Revision: 1.1.1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: hr $ $Date: 2000-09-18 16:29:23 $
+ * last change: $Author: as $ $Date: 2000-12-19 10:12:24 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -147,7 +147,7 @@
Log information about parameter of a newURL() at a plugin frame.
_____________________________________________________________________________________________________________*/
- #define LOG_PARAMETER_NEWURL( SFRAMENAME, SMIMETYPE, SURL, AANY ) \
+ #define LOG_PARAMETER_NEWURL( SFRAMENAME, SMIMETYPE, SURL, sFILTER, AANY ) \
/* Use new scope to declare local private variables! */ \
{ \
::rtl::OStringBuffer sBuffer(1024); \
@@ -157,6 +157,8 @@
sBuffer.append( U2B( SMIMETYPE ) ); \
sBuffer.append( "\", \"" ); \
sBuffer.append( U2B( SURL ) ); \
+ sBuffer.append( "\", \"" ); \
+ sBuffer.append( U2B( SFILTER ) ); \
sBuffer.append( "\", " ); \
if( AANY.hasValue() == sal_True ) \
{ \
@@ -176,7 +178,7 @@
Log information about parameter of a newStream() at a plugin frame.
_____________________________________________________________________________________________________________*/
- #define LOG_PARAMETER_NEWSTREAM( SFRAMENAME, SMIMETYPE, SURL, XSTREAM, AANY ) \
+ #define LOG_PARAMETER_NEWSTREAM( SFRAMENAME, SMIMETYPE, SURL, SFILTER, XSTREAM, AANY ) \
/* Use new scope to declare local private variables! */ \
{ \
::rtl::OStringBuffer sBuffer(1024); \
@@ -186,6 +188,8 @@
sBuffer.append( U2B( SMIMETYPE ) ); \
sBuffer.append( "\", \"" ); \
sBuffer.append( U2B( SURL ) ); \
+ sBuffer.append( "\", \"" ); \
+ sBuffer.append( U2B( SFILTER ) ); \
sBuffer.append( "\", " ); \
if( XSTREAM.is() == sal_True ) \
{ \
@@ -220,8 +224,8 @@
#undef LOGFILE_PLUGIN
#define LOG_URLSEND( SFRAMENAME, SSENDMODE, SINTERNALURL, SEXTERNALURL )
#define LOG_URLRECEIVE( SFRAMENAME, SRECEIVEMODE, SEXTERNALURL, SINTERNALURL )
- #define LOG_PARAMETER_NEWURL( SFRAMENAME, SMIMETYPE, SURL, AANY )
- #define LOG_PARAMETER_NEWSTREAM( SFRAMENAME, SMIMETYPE, SURL, XSTREAM, AANY )
+ #define LOG_PARAMETER_NEWURL( SFRAMENAME, SMIMETYPE, SURL, SFILTER, AANY )
+ #define LOG_PARAMETER_NEWSTREAM( SFRAMENAME, SMIMETYPE, SURL, SFILTER, XSTREAM, AANY )
#endif // #ifdef ENABLE_PLUGINDEBUG