This commit is contained in:
Glenn Maynard
2005-10-27 23:03:21 +00:00
parent d7ce21c03d
commit 8c52221570
2 changed files with 7 additions and 7 deletions
@@ -1,5 +1,5 @@
#include "../../global.h"
#include "../../RageUtil.h"
#include "global.h"
#include "RageUtil.h"
#include "LoadingWindow_Win32.h"
#include "RageFileManager.h"
@@ -113,10 +113,10 @@ void LoadingWindow_Win32::Paint()
}
}
void LoadingWindow_Win32::SetText(CString str)
void LoadingWindow_Win32::SetText( CString sText )
{
CStringArray asMessageLines;
split( str, "\n", asMessageLines, false );
split( sText, "\n", asMessageLines, false );
while( asMessageLines.size() < 3 )
asMessageLines.push_back( "" );
@@ -1,11 +1,11 @@
/* LoadingWindow_Win32 - Loading window using a Windows dialog */
/* LoadingWindow_Win32 - Loading window using a Windows dialog box. */
#ifndef LOADING_WINDOW_WIN32_H
#define LOADING_WINDOW_WIN32_H
#include "LoadingWindow.h"
#include <windows.h>
#include "../../archutils/Win32/AppInstance.h"
#include "archutils/Win32/AppInstance.h"
class LoadingWindow_Win32: public LoadingWindow
{
@@ -13,7 +13,7 @@ public:
LoadingWindow_Win32();
~LoadingWindow_Win32();
void SetText(CString str);
void SetText( CString sText );
void Paint();
void SetIcon( const RageSurface *pIcon );