diff options
author | Ivo Hinkelmann <ihi@openoffice.org> | 2007-11-20 18:45:25 +0000 |
---|---|---|
committer | Ivo Hinkelmann <ihi@openoffice.org> | 2007-11-20 18:45:25 +0000 |
commit | a2cdbed7974e84df10e8de67c1b48d2019b882f8 (patch) | |
tree | 425851c100669eac866de575c484899c558cecc1 /sal/qa/rtl/process | |
parent | e3b93bb41efeca8dc0061d018c37d95174809e3e (diff) |
INTEGRATION: CWS reportdesign01 (1.5.92); FILE MERGED
2007/10/15 09:09:37 oj 1.5.92.2: RESYNC: (1.5-1.6); FILE MERGED
2007/10/04 09:03:58 lla 1.5.92.1: #i67655# only updates on some tests to build warning free
Diffstat (limited to 'sal/qa/rtl/process')
-rw-r--r-- | sal/qa/rtl/process/rtl_Process.cxx | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/sal/qa/rtl/process/rtl_Process.cxx b/sal/qa/rtl/process/rtl_Process.cxx index b7aa57dce5e2..f4f321559d64 100644 --- a/sal/qa/rtl/process/rtl_Process.cxx +++ b/sal/qa/rtl/process/rtl_Process.cxx @@ -4,9 +4,9 @@ * * $RCSfile: rtl_Process.cxx,v $ * - * $Revision: 1.6 $ + * $Revision: 1.7 $ * - * last change: $Author: vg $ $Date: 2007-09-20 15:22:39 $ + * last change: $Author: ihi $ $Date: 2007-11-20 19:45:25 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -35,6 +35,7 @@ // MARKER(update_precomp.py): autogen include statement, do not remove #include "precompiled_sal.hxx" + #include <stdlib.h> #include <stdio.h> #include <string.h> @@ -71,9 +72,9 @@ using namespace rtl; /** print a UNI_CODE String. And also print some comments of the string. */ -inline void printUString( const ::rtl::OUString & str, const sal_Char * msg = "" ) +inline void printUString( const ::rtl::OUString & str, const sal_Char * msg = NULL ) { - if ( msg != "" ) + if ( msg != NULL ) { t_print("#%s #printUString_u# ", msg ); } @@ -307,10 +308,11 @@ public: }; // class getGlobalProcessId +} // namespace rtl_Process + CPPUNIT_TEST_SUITE_NAMED_REGISTRATION(rtl_Process::getAppCommandArg, "rtl_Process"); CPPUNIT_TEST_SUITE_NAMED_REGISTRATION(rtl_Process::getGlobalProcessId, "rtl_Process"); -} // namespace rtl_Process // ----------------------------------------------------------------------------- |