summaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2007-01-23 11:28:01 +0000
committerOliver Bolte <obo@openoffice.org>2007-01-23 11:28:01 +0000
commit9526c01d3aba79d95cd8871e207bbca230860dd5 (patch)
tree50cd3934292add53bc30a0680054e7f91cd3862d /shell
parent2bb8b24220efd2bd112236e913c0b83c94ee4a9c (diff)
INTEGRATION: CWS obr04 (1.4.126); FILE MERGED
2007/01/11 09:42:38 obr 1.4.126.2: #i72543# compile fixes + bug in test app 2007/01/10 15:02:15 obr 1.4.126.1: #i72543# correctly encode what gets passed to the shell via popen + add unit test
Diffstat (limited to 'shell')
-rw-r--r--shell/source/unix/exec/shellexec.hxx12
1 files changed, 10 insertions, 2 deletions
diff --git a/shell/source/unix/exec/shellexec.hxx b/shell/source/unix/exec/shellexec.hxx
index c8415f26fb87..d3139c297b2a 100644
--- a/shell/source/unix/exec/shellexec.hxx
+++ b/shell/source/unix/exec/shellexec.hxx
@@ -4,9 +4,9 @@
*
* $RCSfile: shellexec.hxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: rt $ $Date: 2005-09-07 19:54:18 $
+ * last change: $Author: obo $ $Date: 2007-01-23 12:28:01 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -44,6 +44,10 @@
#include <osl/mutex.hxx>
#endif
+#ifndef _RTL_STRBUF_HXX_
+#include <rtl/strbuf.hxx>
+#endif
+
#ifndef _COM_SUN_STAR_LANG_XSERVICEINFO_HPP_
#include <com/sun/star/lang/XServiceInfo.hpp>
#endif
@@ -90,4 +94,8 @@ public:
throw(::com::sun::star::uno::RuntimeException);
};
+
+// helper function - needed for urltest
+void escapeForShell( rtl::OStringBuffer & rBuffer, const rtl::OString & rURL);
+
#endif