From 02280d497dc442fcbc58760a5dba13da91778575 Mon Sep 17 00:00:00 2001 From: Christophe Geuzaine <cgeuzaine@ulg.ac.be> Date: Thu, 21 Dec 2006 21:47:05 +0000 Subject: [PATCH] fix gcc warnings --- Fltk/GUI.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Fltk/GUI.cpp b/Fltk/GUI.cpp index c0921e3585..bd7b1dde0e 100644 --- a/Fltk/GUI.cpp +++ b/Fltk/GUI.cpp @@ -1,4 +1,4 @@ -// $Id: GUI.cpp,v 1.587 2006-12-18 13:19:32 geuzaine Exp $ +// $Id: GUI.cpp,v 1.588 2006-12-21 21:47:05 geuzaine Exp $ // // Copyright (C) 1997-2007 C. Geuzaine, J.-F. Remacle // @@ -1680,11 +1680,11 @@ void GUI::create_option_window() // Buttons { - opt_redraw = new Fl_Return_Button(width - 3.5 * BB - 3 * WB, height - BH - WB, BB, BH, "Redraw"); + opt_redraw = new Fl_Return_Button((int)(width - 3.5 * BB - 3 * WB), height - BH - WB, BB, BH, "Redraw"); opt_redraw->callback(redraw_cb); } { - Fl_Button *o = new Fl_Button(width - 2.5 * BB - 2 * WB, height - BH - WB, (int)(1.5 * BB), BH, "Save as defaults"); + Fl_Button *o = new Fl_Button((int)(width - 2.5 * BB - 2 * WB), height - BH - WB, (int)(1.5 * BB), BH, "Save as defaults"); o->callback(options_save_cb); } { -- GitLab