projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Correct printf() format specifiers for long variables in life demo.
[wxWidgets.git]
/
src
/
gtk
/
spinctrl.cpp
diff --git
a/src/gtk/spinctrl.cpp
b/src/gtk/spinctrl.cpp
index 6ba4071d2833e7138ea2d65eba3dc7d927ca66d3..d84c02d39d8332aa960a4a0db4ee8881c18d0631 100644
(file)
--- a/
src/gtk/spinctrl.cpp
+++ b/
src/gtk/spinctrl.cpp
@@
-185,7
+185,7
@@
double wxSpinCtrlGTKBase::DoGetIncrement() const
wxCHECK_MSG( (m_widget != NULL), 0, wxT("invalid spin button") );
double inc = 0;
wxCHECK_MSG( (m_widget != NULL), 0, wxT("invalid spin button") );
double inc = 0;
- gtk_spin_button_get_increments( GTK_SPIN_BUTTON(m_widget),
NULL, &inc
);
+ gtk_spin_button_get_increments( GTK_SPIN_BUTTON(m_widget),
&inc, NULL
);
return inc;
}
return inc;
}
@@
-257,7
+257,12
@@
void wxSpinCtrlGTKBase::DoSetIncrement(double inc)
wxCHECK_RET( m_widget, "invalid spin button" );
GtkDisableEvents();
wxCHECK_RET( m_widget, "invalid spin button" );
GtkDisableEvents();
- gtk_spin_button_set_increments( GTK_SPIN_BUTTON(m_widget), inc, 10*inc);
+
+ // Preserve the old page value when changing just the increment.
+ double page = 10*inc;
+ gtk_spin_button_get_increments( GTK_SPIN_BUTTON(m_widget), NULL, &page);
+
+ gtk_spin_button_set_increments( GTK_SPIN_BUTTON(m_widget), inc, page);
GtkEnableEvents();
}
GtkEnableEvents();
}