summaryrefslogtreecommitdiff
path: root/src/GipfelWidget.cxx
diff options
context:
space:
mode:
authorJohannes Hofmann <Johannes.Hofmann@gmx.de>2006-08-24 19:25:34 +0200
committerJohannes Hofmann <Johannes.Hofmann@gmx.de>2006-08-24 19:25:34 +0200
commitc4df5daaef948b4822ae6023c511e8da2e3d468c (patch)
tree9dce1d6f97539f4c898bbb306c04a29bdf54bcbe /src/GipfelWidget.cxx
parent088620112c370405d580c57f1e2d212d649cec07 (diff)
fix 64bit compilation problem (reported by Maxi)
Diffstat (limited to 'src/GipfelWidget.cxx')
-rw-r--r--src/GipfelWidget.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/GipfelWidget.cxx b/src/GipfelWidget.cxx
index ee5cb00..75451ec 100644
--- a/src/GipfelWidget.cxx
+++ b/src/GipfelWidget.cxx
@@ -109,7 +109,7 @@ GipfelWidget::load_image(char *file) {
mb = new Fl_Menu_Button(x(),y(),w()+x(),h()+y(),"&popup");
mb->type(Fl_Menu_Button::POPUP3);
mb->box(FL_NO_BOX);
- mb->add("Center Peak", NULL, (Fl_Callback*) center_cb, this);
+ mb->add("Center Peak", 0, (Fl_Callback*) center_cb, this);
// try to retrieve gipfel data from JPEG comment section
args[0] = "rdjpgcom";