summaryrefslogtreecommitdiff
path: root/salhelper
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
commit18f276be9f555c6d220ed96f230e87ca98fc79eb (patch)
treef0665624889cc218a13d362576bbd5b26683c279 /salhelper
parent433c61356bac7b66e7904a0e43126ddac4248bcb (diff)
*** empty log message ***
Diffstat (limited to 'salhelper')
-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 983178b9c..430d42f90 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 15e2662d5..4830eb7a1 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()