Skip to content

Commit

Permalink
Fix an identifier. Spotted by aquileia
Browse files Browse the repository at this point in the history
  • Loading branch information
AI0867 committed Mar 23, 2014
1 parent 20d4381 commit 433edbf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/windows_tray_notification.cpp
Expand Up @@ -186,7 +186,7 @@ std::wstring windows_tray_notification::string_to_wstring(const std::string& str
else
u16_string.resize(maxlength);
}
return std::wstring(utf16_string.begin(), utf16_string.end());
return std::wstring(u16_string.begin(), u16_string.end());
}

bool windows_tray_notification::show(std::string title, std::string message)
Expand Down

0 comments on commit 433edbf

Please sign in to comment.