summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authornakeee <nakeee@gmail.com>2008-09-25 06:00:08 +0000
committernakeee <nakeee@gmail.com>2008-09-25 06:00:08 +0000
commit5290027d58d4fc3d5fe5326e0dce49cb9ce70110 (patch)
tree2486a218878698231d54af411625b7151d24ac84 /Source/Core
parentef4bac25c791df46c1658dc14b76122ac67c591a (diff)
used wxemptytext
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@680 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/DolphinWX/Src/MemcardManager.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/Core/DolphinWX/Src/MemcardManager.cpp b/Source/Core/DolphinWX/Src/MemcardManager.cpp
index f355f0c57f..7f2856b0ff 100644
--- a/Source/Core/DolphinWX/Src/MemcardManager.cpp
+++ b/Source/Core/DolphinWX/Src/MemcardManager.cpp
@@ -308,11 +308,11 @@ void CMemcardManager::ReloadMemcard(const char *fileName, int card)
if(!memoryCard[card]->GetComment1(i,title)) title[0]=0;
if(!memoryCard[card]->GetComment2(i,comment)) comment[0]=0;
- int index = m_MemcardList[card]->InsertItem(i, wxString::FromAscii("row"));
- m_MemcardList[card]->SetItem(index, COLUMN_BANNER, wxString::FromAscii(""));
+ int index = m_MemcardList[card]->InsertItem(i, wxT("row"));
+ m_MemcardList[card]->SetItem(index, COLUMN_BANNER, wxEmptyString);
m_MemcardList[card]->SetItem(index, COLUMN_TITLE, wxString::FromAscii(title));
m_MemcardList[card]->SetItem(index, COLUMN_COMMENT, wxString::FromAscii(comment));
- m_MemcardList[card]->SetItem(index, COLUMN_ICON, wxString::FromAscii(""));
+ m_MemcardList[card]->SetItem(index, COLUMN_ICON, wxEmptyString);
if(images[i]>=0)
{