From 237861db95d9a31174537bf10c77931a3fc6def7 Mon Sep 17 00:00:00 2001 From: Jonathan Moore Liles Date: Sun, 31 Jan 2010 20:54:26 -0600 Subject: [PATCH] Mixer: Set X class of main window. --- Mixer/main.C | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Mixer/main.C b/Mixer/main.C index 1dd22ed..87ce399 100644 --- a/Mixer/main.C +++ b/Mixer/main.C @@ -17,6 +17,8 @@ /* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /*******************************************************************************/ +#include "const.h" + #include #include #include @@ -120,6 +122,8 @@ main ( int argc, char **argv ) { Fl_Double_Window *o = main_window = new Fl_Double_Window( 800, 600, "Mixer" ); { + main_window->xclass( APP_NAME ); + Fl_Widget *o = mixer = new Mixer( 0, 0, main_window->w(), main_window->h(), NULL ); Fl_Group::current()->resizable(o); }