View | Details | Raw Unified | Return to bug 46474
Collapse All | Expand All

(-)gtkfig.new/files/patch-src::line.cc (+11 lines)
Line 0 Link Here
1
--- src/line.cc.orig	Mon Dec 23 03:58:33 2002
2
+++ src/line.cc	Mon Dec 23 03:58:44 2002
3
@@ -14,7 +14,7 @@
4
 // he/she clicked on the line.
5
 #define SELECT_DISTANCE 4
6
 
7
-TCADLine::TCADLine(TCADSheet *Sheet,int x=0,int y=0) : TCADObject(Sheet)
8
+TCADLine::TCADLine(TCADSheet *Sheet,int x,int y) : TCADObject(Sheet)
9
 {
10
   First.x = x;
11
   First.y = y;
(-)gtkfig.new/files/patch-src::rightangleline.cc (+11 lines)
Line 0 Link Here
1
--- src/rightangleline.cc.orig	Mon Dec 23 03:59:17 2002
2
+++ src/rightangleline.cc	Mon Dec 23 03:59:30 2002
3
@@ -283,7 +283,7 @@
4
   }
5
 }
6
 
7
-TCADRightAngleLine::TCADRightAngleLine(TCADSheet *Sheet,int x=0,int y=0) : TCADLine(Sheet,x,y)
8
+TCADRightAngleLine::TCADRightAngleLine(TCADSheet *Sheet,int x,int y) : TCADLine(Sheet,x,y)
9
 {
10
   int i;
11
   
(-)gtkfig.new/files/patch-src::sheet.cc (+11 lines)
Line 0 Link Here
1
--- src/sheet.cc.orig	Mon Dec 23 04:01:02 2002
2
+++ src/sheet.cc	Mon Dec 23 04:01:05 2002
3
@@ -1142,7 +1142,7 @@
4
   if (!Obj->HasText()) return;
5
 
6
   OldText = ((TCADTextObject *)Obj)->GetText();
7
-  TextEditBox(OldText,NULL,EditTextCallback,this);
8
+  TextEditBox(OldText,NULL,(void(*)(char*,void*))EditTextCallback,this);
9
   free(OldText);
10
 }
11
 
(-)gtkfig.new/files/patch-src::simpleline.cc (+11 lines)
Line 0 Link Here
1
--- src/simpleline.cc.orig	Mon Dec 23 04:01:18 2002
2
+++ src/simpleline.cc	Mon Dec 23 04:01:41 2002
3
@@ -8,7 +8,7 @@
4
 #include <math.h>
5
 #include "simpleline.h"
6
 
7
-TCADSimpleLine::TCADSimpleLine(TCADSheet *Sheet,int x=0,int y=0) : TCADLine(Sheet,x,y)
8
+TCADSimpleLine::TCADSimpleLine(TCADSheet *Sheet,int x,int y) : TCADLine(Sheet,x,y)
9
 {
10
   RecomputeEncapRect();
11
   RecomputeRefRect();
(-)gtkfig.new/files/patch-src::texteditbox.cc (+10 lines)
Line 0 Link Here
1
--- src/texteditbox.cc.orig	Mon Dec 23 04:02:07 2002
2
+++ src/texteditbox.cc	Mon Dec 23 04:02:22 2002
3
@@ -5,6 +5,7 @@
4
 \********************************/
5
 
6
 #include <stdlib.h>
7
+#include <string.h>
8
 #include <gtk/gtk.h>
9
 #include <gdk/gdkkeysyms.h>
10

Return to bug 46474