fixed compilation [warning]

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11219 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2001-07-31 17:58:21 +00:00
parent ad0bae85d8
commit 817ec43a71
2 changed files with 8 additions and 2 deletions

View File

@@ -21,6 +21,7 @@
#include <sys/types.h> #include <sys/types.h>
#include <sys/stat.h> #include <sys/stat.h>
#include <ctype.h> #include <ctype.h>
#include <math.h> // for fabs
#include "gdk/gdk.h" #include "gdk/gdk.h"
#include "gtk/gtk.h" #include "gtk/gtk.h"
@@ -1312,6 +1313,8 @@ void wxTextCtrl::Thaw()
{ {
if ( HasFlag(wxTE_MULTILINE) ) if ( HasFlag(wxTE_MULTILINE) )
{ {
GTK_TEXT(m_text)->vadj->value = 0.0;
gtk_text_thaw(GTK_TEXT(m_text)); gtk_text_thaw(GTK_TEXT(m_text));
} }
} }
@@ -1368,6 +1371,6 @@ bool wxTextCtrl::ScrollPages(int pages)
if ( !adj ) if ( !adj )
return FALSE; return FALSE;
return DoScroll(adj, pages*adj->page_increment); return DoScroll(adj, (int)ceil(pages*adj->page_increment));
} }

View File

@@ -21,6 +21,7 @@
#include <sys/types.h> #include <sys/types.h>
#include <sys/stat.h> #include <sys/stat.h>
#include <ctype.h> #include <ctype.h>
#include <math.h> // for fabs
#include "gdk/gdk.h" #include "gdk/gdk.h"
#include "gtk/gtk.h" #include "gtk/gtk.h"
@@ -1312,6 +1313,8 @@ void wxTextCtrl::Thaw()
{ {
if ( HasFlag(wxTE_MULTILINE) ) if ( HasFlag(wxTE_MULTILINE) )
{ {
GTK_TEXT(m_text)->vadj->value = 0.0;
gtk_text_thaw(GTK_TEXT(m_text)); gtk_text_thaw(GTK_TEXT(m_text));
} }
} }
@@ -1368,6 +1371,6 @@ bool wxTextCtrl::ScrollPages(int pages)
if ( !adj ) if ( !adj )
return FALSE; return FALSE;
return DoScroll(adj, pages*adj->page_increment); return DoScroll(adj, (int)ceil(pages*adj->page_increment));
} }