projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
wxDC::Clear() shouldn't do anything in printing DCs (I think)
[wxWidgets.git]
/
src
/
msw
/
spinbutt.cpp
diff --git
a/src/msw/spinbutt.cpp
b/src/msw/spinbutt.cpp
index b4b9cfb1e76fc6d8852c3d16c4c7b3b5e7ca0d91..4b3f25570c4cfcf3c48306b3d07c0a19fa2cd7b1 100644
(file)
--- a/
src/msw/spinbutt.cpp
+++ b/
src/msw/spinbutt.cpp
@@
-195,7
+195,7
@@
bool wxSpinButton::Create(wxWindow *parent,
SubclassWin(m_hWnd);
- Set
Best
Size(size);
+ Set
Initial
Size(size);
return true;
}
@@
-257,7
+257,7
@@
void wxSpinButton::SetValue(int val)
}
void wxSpinButton::NormalizeValue()
-{
+{
SetValue( GetValue() );
}