aboutsummaryrefslogtreecommitdiff
path: root/devel/kaptain/files/patch-kaptain-communication.h
diff options
context:
space:
mode:
Diffstat (limited to 'devel/kaptain/files/patch-kaptain-communication.h')
-rw-r--r--devel/kaptain/files/patch-kaptain-communication.h37
1 files changed, 37 insertions, 0 deletions
diff --git a/devel/kaptain/files/patch-kaptain-communication.h b/devel/kaptain/files/patch-kaptain-communication.h
new file mode 100644
index 000000000000..3af0956d9af3
--- /dev/null
+++ b/devel/kaptain/files/patch-kaptain-communication.h
@@ -0,0 +1,37 @@
+--- kaptain/communication.h.orig Sat Mar 2 19:56:32 2002
++++ kaptain/communication.h Fri Dec 20 16:14:31 2002
+@@ -12,7 +12,7 @@
+ QSocketNotifier * reader;
+ bool ok;
+ bool input, output;
+- string message; // buffer
++ std::string message; // buffer
+
+ public:
+ Communicator();
+@@ -21,19 +21,19 @@
+ bool is_stdin();
+
+ bool setup_stdio();
+- bool setup_progio(string);
+- bool setup_socket_server(string);
+- bool setup_socket_client(string);
++ bool setup_progio(std::string);
++ bool setup_socket_server(std::string);
++ bool setup_socket_client(std::string);
+
+ bool setup_stdin();
+ bool setup_stdout();
+- bool setup_filein(string);
+- bool setup_fileout(string);
++ bool setup_filein(std::string);
++ bool setup_fileout(std::string);
+
+ void no_input() {input=false;}
+ void no_output() {output=false;}
+
+- void send(string);
++ void send(std::string);
+
+ public slots:
+ void data_arrived(int);