summaryrefslogtreecommitdiff
path: root/salhelper/test
diff options
context:
space:
mode:
authorJoachim Lingner <jl@openoffice.org>2001-04-23 14:49:58 +0000
committerJoachim Lingner <jl@openoffice.org>2001-04-23 14:49:58 +0000
commite0bc7714e180bc8834468a509ec7ba99c27f9642 (patch)
treefdc0570cf209476c09b8da9a9b32a3b5ae4aa3aa /salhelper/test
parent3f303c6a79c6e2415523d295845b2482713d480d (diff)
*** empty log message ***
Diffstat (limited to 'salhelper/test')
-rw-r--r--salhelper/test/rtti/rttitest.cxx2
-rw-r--r--salhelper/test/rtti/samplelibrtti.cxx3
2 files changed, 4 insertions, 1 deletions
diff --git a/salhelper/test/rtti/rttitest.cxx b/salhelper/test/rtti/rttitest.cxx
index 3ca8c7091a85..bf7ad300255f 100644
--- a/salhelper/test/rtti/rttitest.cxx
+++ b/salhelper/test/rtti/rttitest.cxx
@@ -1,6 +1,6 @@
#include <rtl/ustring>
#include <stdio.h>
-#include <typeinfo.h>
+#include <typeinfo>
#include "samplelibrtti.hxx"
diff --git a/salhelper/test/rtti/samplelibrtti.cxx b/salhelper/test/rtti/samplelibrtti.cxx
index 15e2662d59cd..4830eb7a1bea 100644
--- a/salhelper/test/rtti/samplelibrtti.cxx
+++ b/salhelper/test/rtti/samplelibrtti.cxx
@@ -3,6 +3,7 @@
// MyClassA =============================================================
void MyClassA::funcA()
{
+ printf("MyClassA::funcA \n");
}
void MyClassA::funcB()
@@ -20,6 +21,8 @@ void MyClassA::funcD()
// MyClassB ===============================================================
void MyClassB::funcA()
{
+
+ printf("MyClassA::funcB \n");
}
void MyClassB::funcB()