cleanup
This commit is contained in:
@@ -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 );
|
||||
|
||||
|
||||
Reference in New Issue
Block a user