summaryrefslogtreecommitdiff
path: root/forms/source/richtext/richtextcontrol.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'forms/source/richtext/richtextcontrol.cxx')
-rw-r--r--forms/source/richtext/richtextcontrol.cxx14
1 files changed, 0 insertions, 14 deletions
diff --git a/forms/source/richtext/richtextcontrol.cxx b/forms/source/richtext/richtextcontrol.cxx
index 045f98df265f..12b9b1ed98b6 100644
--- a/forms/source/richtext/richtextcontrol.cxx
+++ b/forms/source/richtext/richtextcontrol.cxx
@@ -57,13 +57,6 @@ namespace frm
using namespace ::com::sun::star::lang;
using namespace ::com::sun::star::frame;
-#define FORWARD_TO_PEER_1( unoInterface, method, param1 ) \
- Reference< unoInterface > xTypedPeer( getPeer(), UNO_QUERY ); \
- if ( xTypedPeer.is() ) \
- { \
- xTypedPeer->method( param1 ); \
- }
-
#define FORWARD_TO_PEER_1_RET( returnType, unoInterface, method, param1 ) \
returnType aReturn; \
Reference< unoInterface > xTypedPeer( getPeer(), UNO_QUERY ); \
@@ -73,13 +66,6 @@ namespace frm
} \
return aReturn;
-#define FORWARD_TO_PEER_3( unoInterface, method, param1, param2, param3 ) \
- Reference< unoInterface > xTypedPeer( getPeer(), UNO_QUERY ); \
- if ( xTypedPeer.is() ) \
- { \
- xTypedPeer->method( param1, param2, param3 ); \
- }
-
#define FORWARD_TO_PEER_3_RET( returnType, unoInterface, method, param1, param2, param3 ) \
returnType aReturn; \
Reference< unoInterface > xTypedPeer( getPeer(), UNO_QUERY ); \