summaryrefslogtreecommitdiff
path: root/games/eboard/files/patch-text.cc
diff options
context:
space:
mode:
authorPete Fritchman <petef@FreeBSD.org>2003-01-04 21:56:40 +0000
committerPete Fritchman <petef@FreeBSD.org>2003-01-04 21:56:40 +0000
commit1c9b422c7d1b8ac885b47ffb4bec97fdb0091626 (patch)
tree781def893aa15494a5175a932dbf80a87da48877 /games/eboard/files/patch-text.cc
parent2.5.4 isn't fetchable - update to 2.5.5. (diff)
Update to 0.7.0.
Notes
Notes: svn path=/head/; revision=72536
Diffstat (limited to 'games/eboard/files/patch-text.cc')
-rw-r--r--games/eboard/files/patch-text.cc38
1 files changed, 0 insertions, 38 deletions
diff --git a/games/eboard/files/patch-text.cc b/games/eboard/files/patch-text.cc
deleted file mode 100644
index c97b92484b9f..000000000000
--- a/games/eboard/files/patch-text.cc
+++ /dev/null
@@ -1,38 +0,0 @@
-
-$FreeBSD$
-
---- text.cc.orig Sun Apr 28 23:04:34 2002
-+++ text.cc Sat Sep 28 23:00:58 2002
-@@ -198,14 +198,14 @@
- gtk_widget_show(widget);
- }
-
--void Text::append(char *msg,int color,Importance imp=IM_NORMAL) {
-+void Text::append(char *msg,int color,Importance imp) {
- if (Filter.accept(msg)) {
- pushLevel(imp);
- gtk_ftext_append(GTK_FTEXT(text),msg,-1,color);
- }
- }
-
--void Text::append(char *msg,char *msg2,int color, Importance imp=IM_NORMAL) {
-+void Text::append(char *msg,char *msg2,int color, Importance imp) {
- char *d;
- d=(char *)g_malloc0(strlen(msg)+strlen(msg2)+1);
- strcpy(d,msg);
-@@ -253,13 +253,13 @@
- }
- }
-
--void TextSet::append(char *msg,int color,Importance imp=IM_NORMAL) {
-+void TextSet::append(char *msg,int color,Importance imp) {
- list<Text *>::iterator ti;
- for(ti=targets.begin();ti!=targets.end();ti++)
- (*ti)->append(msg,color,imp);
- }
-
--void TextSet::append(char *msg,char *msg2,int color,Importance imp=IM_NORMAL) {
-+void TextSet::append(char *msg,char *msg2,int color,Importance imp) {
- list<Text *>::iterator ti;
- for(ti=targets.begin();ti!=targets.end();ti++)
- (*ti)->append(msg,msg2,color,imp);