Make linux compile the loading window code.
NOTE: The actual loading window code is stubbed. I do not know GTK window code yet, so hopefully this won't crash yet.
This commit is contained in:
@@ -56,6 +56,21 @@ void LoadingWindow_Gtk::SetText( RString s )
|
||||
Module_SetText( s );
|
||||
}
|
||||
|
||||
void LoadingWindow_Gtk::SetProgress( const int progress )
|
||||
{
|
||||
; // stub, needs to be finished.
|
||||
}
|
||||
|
||||
void LoadingWindow_Gtk::SetTotalWork( const int totalWork )
|
||||
{
|
||||
; // stub, needs to be finished.
|
||||
}
|
||||
|
||||
void LoadingWindow_Gtk::SetIndeterminate( bool indeterminate )
|
||||
{
|
||||
; // stub, needs to be finished.
|
||||
}
|
||||
|
||||
/*
|
||||
* (c) 2003-2004 Glenn Maynard, Sean Burke
|
||||
* All rights reserved.
|
||||
|
||||
@@ -11,8 +11,10 @@ public:
|
||||
LoadingWindow_Gtk();
|
||||
RString Init();
|
||||
~LoadingWindow_Gtk();
|
||||
|
||||
void SetText( RString str );
|
||||
void SetProgress( const int progress );
|
||||
void SetTotalWork( const int totalWork );
|
||||
void SetIndeterminate( bool indeterminate );
|
||||
};
|
||||
#define USE_LOADING_WINDOW_GTK
|
||||
|
||||
|
||||
Reference in New Issue
Block a user