summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2005-03-29 12:06:21 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2005-03-29 12:06:21 +0000
commitc521f781c5f992341f62056bba524befcd46c863 (patch)
tree6efbeafcbb165e82ca7891da8b33b6e1f33635d1
parent59908769fa1069bc1187e912a1423a09a53a553d (diff)
INTEGRATION: CWS vcl37 (1.9.88); FILE MERGED
2005/02/17 13:52:51 pl 1.9.88.1: #i42988# remove const
-rw-r--r--extensions/source/plugin/unx/npwrap.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/extensions/source/plugin/unx/npwrap.cxx b/extensions/source/plugin/unx/npwrap.cxx
index ddb7ba787610..5c43fefeab88 100644
--- a/extensions/source/plugin/unx/npwrap.cxx
+++ b/extensions/source/plugin/unx/npwrap.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: npwrap.cxx,v $
*
- * $Revision: 1.9 $
+ * $Revision: 1.10 $
*
- * last change: $Author: hr $ $Date: 2004-10-13 09:03:22 $
+ * last change: $Author: rt $ $Date: 2005-03-29 13:06:21 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -349,7 +349,7 @@ int main( int argc, char **argv)
if( nChild == 0 )
{
char pidbuf[16];
- const char* pArgs[] = { "xterm", "-sl", "2000", "-sb", "-e", "gdb", "pluginapp.bin", pidbuf, NULL };
+ char* pArgs[] = { "xterm", "-sl", "2000", "-sb", "-e", "gdb", "pluginapp.bin", pidbuf, NULL };
sprintf( pidbuf, "%d", nPID );
execvp( pArgs[0], pArgs );
_exit(255);