~ubuntu-branches/ubuntu/quantal/vice/quantal

« back to all changes in this revision

Viewing changes to src/arch/unix/x11/xaw/about.c

  • Committer: Bazaar Package Importer
  • Author(s): Zed Pobre
  • Date: 2005-03-27 13:06:04 UTC
  • mfrom: (4 hoary)
  • mto: This revision was merged to the branch mainline in revision 5.
  • Revision ID: james.westby@ubuntu.com-20050327130604-zodmv0i60dbbmcik
Tags: 1.16-3
Apply patch from Andreas Jochens <aj@andaco.de> to correct building on
AMD64 and GCC 4.x (closes: #300936)

Show diffs side-by-side

added added

removed removed

Lines of Context:
57
57
 
58
58
static UI_CALLBACK(info_dialog_license_callback)
59
59
{
60
 
    ui_show_text(_("VICE is FREE software!"), license_text, -1, -1);
 
60
    ui_show_text(_("VICE is FREE software!"), info_license_text, -1, -1);
61
61
}
62
62
 
63
63
static UI_CALLBACK(info_dialog_no_warranty_callback)
64
64
{
65
 
    ui_show_text(_("No warranty!"), warranty_text, -1, -1);
 
65
    ui_show_text(_("No warranty!"), info_warranty_text, -1, -1);
66
66
}
67
67
 
68
68
static UI_CALLBACK(info_dialog_contrib_callback)
69
69
{
70
 
    ui_show_text(_("Contributors to the VICE project"), contrib_text, -1, -1);
 
70
    ui_show_text(_("Contributors to the VICE project"), info_contrib_text,
 
71
                 -1, -1);
71
72
}
72
73
 
73
74
static Widget build_info_dialog(Widget parent,
125
126
            (_ui_top_level, &is_closed,
126
127
             "",
127
128
             "V I C E",
128
 
             "the Versatile Commodore Emulator",
129
129
             "",
130
130
             "Version " VERSION,
131
131
#ifdef UNSTABLE
132
132
             "(unstable)",
133
133
#endif
134
134
             "",
135
 
             "Copyright C 1998-2002 Andreas Boose",
136
 
             "Copyright C 1998-2002 Tibor Biczo",
137
 
             "Copyright C 1999-2002 Andreas Dehmel",
138
 
             "Copyright C 1999-2002 Thomas Bretz",
139
 
             "Copyright C 1999-2002 Andreas Matthies",
140
 
             "Copyright C 1999-2002 Martin Pottendorfer",
141
 
             "Copyright C 1998-2002 Dag Lem",
142
 
             "Copyright C 2000-2002 Markus Brenner",
143
 
             "Copyright C 2000-2002 Spiro Trikaliotis",
144
 
             "Copyright C 1997-2001 Daniel Sladic",
 
135
             "Copyright C 1998-2005 Andreas Boose",
 
136
             "Copyright C 1998-2005 Tibor Biczo",
 
137
             "Copyright C 1999-2005 Andreas Dehmel",
 
138
             "Copyright C 1999-2005 Thomas Bretz",
 
139
             "Copyright C 1999-2005 Andreas Matthies",
 
140
             "Copyright C 1999-2005 Martin Pottendorfer",
 
141
             "Copyright C 1998-2005 Dag Lem",
 
142
             "Copyright C 2000-2005 Spiro Trikaliotis",
 
143
             "Copyright C 2003-2005 David Hansel",
 
144
             "Copyright C 2000-2004 Markus Brenner",
145
145
             "",
146
146
             _("Official VICE homepage:"),
147
 
             "http://viceteam.bei.t-online.de/",
 
147
             "http://www.viceteam.org/",
148
148
             "",
149
149
             NULL);
150
150
    }