projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
fix the bug with not showing all the text in the text control even if there is enough...
[wxWidgets.git]
/
src
/
os2
/
dialog.cpp
diff --git
a/src/os2/dialog.cpp
b/src/os2/dialog.cpp
index 12d98447d1b63c693f15e9182a0eb1203be18784..e17a1414d8736fb0fd4276f838db47305102df69 100644
(file)
--- a/
src/os2/dialog.cpp
+++ b/
src/os2/dialog.cpp
@@
-222,7
+222,7
@@
bool wxDialog::Show( bool bShow )
wxString title = GetTitle();
if (!title.empty())
- ::WinSetWindowText((HWND)GetHwnd(),
(PSZ)
title.c_str());
+ ::WinSetWindowText((HWND)GetHwnd(), title.c_str());
if ( bShow )
{