diff options
author | Joachim Lingner <jl@openoffice.org> | 2001-04-23 14:49:58 +0000 |
---|---|---|
committer | Joachim Lingner <jl@openoffice.org> | 2001-04-23 14:49:58 +0000 |
commit | e0bc7714e180bc8834468a509ec7ba99c27f9642 (patch) | |
tree | fdc0570cf209476c09b8da9a9b32a3b5ae4aa3aa | |
parent | 3f303c6a79c6e2415523d295845b2482713d480d (diff) |
*** empty log message ***
-rw-r--r-- | salhelper/test/rtti/rttitest.cxx | 2 | ||||
-rw-r--r-- | salhelper/test/rtti/samplelibrtti.cxx | 3 |
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() |