summaryrefslogtreecommitdiff
path: root/Source/Core/DebuggerWX/Src/LogWindow.cpp
diff options
context:
space:
mode:
authorfacugaich <facugaich@gmail.com>2008-12-20 18:46:49 +0000
committerfacugaich <facugaich@gmail.com>2008-12-20 18:46:49 +0000
commit3be88bb2dd59136a3d69ea9c8381333987fb20b2 (patch)
tree4a1b1043466ec41121453c8e3dac5184e37a9f0a /Source/Core/DebuggerWX/Src/LogWindow.cpp
parented75de40f4c7f9c0f7c912d8956a78b7540f655c (diff)
- Janitorial tasks
- Bugfix in ARCode/Patch editor git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1612 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/DebuggerWX/Src/LogWindow.cpp')
-rw-r--r--Source/Core/DebuggerWX/Src/LogWindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DebuggerWX/Src/LogWindow.cpp b/Source/Core/DebuggerWX/Src/LogWindow.cpp
index 7c14c96368..d3c92bdfcd 100644
--- a/Source/Core/DebuggerWX/Src/LogWindow.cpp
+++ b/Source/Core/DebuggerWX/Src/LogWindow.cpp
@@ -73,7 +73,7 @@ CLogWindow::CLogWindow(wxWindow* parent)
m_options->SetMinSize(wxSize(m_options->GetSize().GetWidth() - 40,
m_options->GetCount() * 15));
#ifdef _WIN32
- for (int i = 0; i < m_options->GetCount(); ++i)
+ for (unsigned int i = 0; i < m_options->GetCount(); ++i)
m_options->GetItem(i)->SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_BTNFACE));
#endif