aboutsummaryrefslogtreecommitdiff
path: root/graphics/xmrm/files/patch-xmrm_main.cc
blob: 5b23e1e3fcc9f40e9cad40f7feb42005951af78c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
--- xmrm_main.cc.orig	Tue Mar 10 00:00:00 1998
+++ xmrm_main.cc	Fri Nov 29 17:42:05 2002
@@ -6,7 +6,6 @@
 #include <tiffio.h>
 #include <stdlib.h>
 #include <unistd.h>
-#include <malloc.h> //****************
 #include "xmrm.h"
 #include "io.h"
 #include "const.h"
@@ -115,7 +114,7 @@
 // CREDITS_post_handler
 int CREDITS_post_handler(FL_OBJECT *ob, int event, FL_Coord mx, FL_Coord my, int key, void *xev)
 {
-  char s[] = "Starts NETSCAPE !";
+  char s[] = BROWSER_MSG;
 
   if (ob == fd_CREDITS->BT_Drop)
   {
@@ -170,10 +169,11 @@
     s="Morph Source Image into Destination Image according to your settings !";
   else if (ob == fd_MRM->BT_Drop)
   {
-    s = "Click this pixmap to start Netscape and visit the Institute of Computer Graphics !";
+    s = "Click this pixmap to visit the Institute of Computer Graphics !";
     if (event == FL_ENTER)
     {
-      fl_show_oneliner("Starts NETSCAPE !", ob->form->x + ob->x, ob->form->y + ob->y + ob->h + 1);
+      fl_show_oneliner("Visit Institute of Computer Graphics", ob->form->x + ob->x, ob->form->y + ob->y + ob->h + 1);
+      
       fl_set_pixmapbutton_pixmap(ob, xpm_drop_shadow, 0);
       fl_redraw_object(ob);
     }
@@ -308,7 +308,7 @@
   control.debug = 0;
   
   /* Init control: */
-  control.ControlClass(); // call constructor
+  control.ControlClassInit(); // call constructor
   temp = control.URL_manual;
 
   while( (c=getopt(argc, argv, "hdm:p:")) != -1)