Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/sanear.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Marsev <alex.marsev@gmail.com>2014-12-09 13:56:00 +0300
committerAlex Marsev <alex.marsev@gmail.com>2014-12-09 13:56:00 +0300
commit88f425fbb7c0fd6f4e4174a659fc63f46164d82b (patch)
tree16e16e8cda93493367d9707f19096e159d95f28a /src/MyPropertyPage.cpp
parent7523aac54d4f6d6b9691f5ac7e974c450a4194f2 (diff)
Cosmetics
Diffstat (limited to 'src/MyPropertyPage.cpp')
-rw-r--r--src/MyPropertyPage.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/MyPropertyPage.cpp b/src/MyPropertyPage.cpp
index 9cc2ff2..34b9483 100644
--- a/src/MyPropertyPage.cpp
+++ b/src/MyPropertyPage.cpp
@@ -22,9 +22,9 @@ namespace SaneAudioRenderer
Write(out, &t, sizeof(T));
}
- void WriteString(std::vector<char>& out, const std::wstring& string)
+ void WriteString(std::vector<char>& out, const std::wstring& str)
{
- Write(out, (void*)string.c_str(), sizeof(wchar_t) * (string.length() + 1));
+ Write(out, (void*)str.c_str(), sizeof(wchar_t) * (str.length() + 1));
}
void WriteDialogHeader(std::vector<char>& out, const std::wstring& font, WORD fontSize)