From d495b513c735d53c65f57b61cf5d7bdeedcb809f Mon Sep 17 00:00:00 2001 From: fgerlits Date: Fri, 26 Oct 2007 11:15:22 +0000 Subject: [PATCH] the linker doesn't like inline public methods today; removing inline-ness for now; maybe put it back after figuring out how --- campcaster/src/products/gLiveSupport/src/GLiveSupport.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/campcaster/src/products/gLiveSupport/src/GLiveSupport.cxx b/campcaster/src/products/gLiveSupport/src/GLiveSupport.cxx index 8638b1648..bfe0a669b 100644 --- a/campcaster/src/products/gLiveSupport/src/GLiveSupport.cxx +++ b/campcaster/src/products/gLiveSupport/src/GLiveSupport.cxx @@ -560,7 +560,7 @@ GLiveSupport :: checkConfiguration(void) throw () /*------------------------------------------------------------------------------ * Display a message window. *----------------------------------------------------------------------------*/ -inline void +void LiveSupport :: GLiveSupport :: GLiveSupport :: displayMessageWindow(const Glib::ustring & message) throw () @@ -572,7 +572,7 @@ GLiveSupport :: displayMessageWindow(const Glib::ustring & message) /*------------------------------------------------------------------------------ * Run a dialog window with No and Yes buttons. *----------------------------------------------------------------------------*/ -inline Gtk::ResponseType +Gtk::ResponseType LiveSupport :: GLiveSupport :: GLiveSupport :: runNoYesDialog(const Glib::ustring & message) throw () @@ -584,7 +584,7 @@ GLiveSupport :: runNoYesDialog(const Glib::ustring & message) /*------------------------------------------------------------------------------ * Run a dialog window with just an OK button. *----------------------------------------------------------------------------*/ -inline Gtk::ResponseType +Gtk::ResponseType LiveSupport :: GLiveSupport :: GLiveSupport :: runOkDialog(const Glib::ustring & message) throw ()