16 lines
580 B
Plaintext
16 lines
580 B
Plaintext
$OpenBSD: patch-input_hpp,v 1.1 2000/07/26 20:57:21 rohee Exp $
|
|
|
|
"foobar" is now a const char *, so adjust the proto.
|
|
|
|
--- imlib/include/input.hpp.orig Wed Jul 26 22:08:49 2000
|
|
+++ imlib/include/input.hpp Wed Jul 26 22:09:31 2000
|
|
@@ -64,7 +64,7 @@
|
|
}
|
|
public :
|
|
text_field(int X, int Y, int ID, char *Prompt, char *Format,
|
|
- char *Data, ifield *Next);
|
|
+ const char *Data, ifield *Next);
|
|
text_field(int X, int Y, int ID, char *Prompt, char *Format,
|
|
double Data, ifield *Next);
|
|
|