Add LoadingWindow::SetProgress(current, target)
authorMarc Cannon <vyhdycokio@gmail.com>
Wed, 2 Jan 2013 15:21:35 +0000 (15:21 +0000)
committerMarc Cannon <vyhdycokio@gmail.com>
Wed, 2 Jan 2013 15:21:35 +0000 (15:21 +0000)
src/arch/LoadingWindow/LoadingWindow.h
src/arch/LoadingWindow/LoadingWindow_Gtk.h

index 162d530..d5cded6 100755 (executable)
@@ -19,6 +19,7 @@ public:
        virtual void Paint() = 0;
        virtual void SetText(CString str) { }
        virtual void SetIcon( const RageSurface *pIcon ) { }
+       virtual void SetProgress( unsigned iCurrent, unsigned iTarget ) { }
 };
 
 #endif
index 2d5ff0a..f19959c 100755 (executable)
@@ -13,6 +13,7 @@ public:
        ~LoadingWindow_Gtk();
 
        void SetText(CString str);
+       void SetProgress( unsigned iCurrent, unsigned iTarget );
        void Paint() { }
 };