summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorHans Breuer <hans@breuer.org>2002-02-10 13:18:51 +0000
committerHans Breuer <hans@src.gnome.org>2002-02-10 13:18:51 +0000
commit6d33d1c7e3d9782c22a85ed972c0745db0333791 (patch)
tree656df1715de144fdf8499fa21a1ec2e83a50be4f /tests
parentf42f2a646e44c917fd0a435a7818d18eb513503d (diff)
downloadgtk+-6d33d1c7e3d9782c22a85ed972c0745db0333791.tar.gz
don't reduce the scroll rect size by the scroll amount
2002-02-10 Hans Breuer <hans@breuer.org> * gdk/win32/gdkgeometry-win32.c : don't reduce the scroll rect size by the scroll amount * gdk/win32/gdkwindow-win32.c * gdk/win32/gdkselection-win32.c : added some casts to make it compile with msvc's strict type checking * gtk/fnmatch.c : #include <ctype.h> again for tolower prototype. The fnmatch() code assumes to be in the crt locale though it is feeded by utf8 strings from gtkfilesel.c * gtk/gtkfilesel.c : let ->cmpl_text be a strdup managed by _CompletionDir instead of referencing already freed memory * gtk/gtktooltips.c (gtk_tooltips_init) : fix typo to gtk_rc_parse_string (theDefaultTooltipColor) once as it was intended * tests/makefile.msc : added more tests * tests/testgtk.c (create_list) : don't try to load gtkenums.h from the current directory use ../gtk/gtkenums.h instead
Diffstat (limited to 'tests')
-rw-r--r--tests/makefile.msc1
-rw-r--r--tests/testgtk.c2
2 files changed, 2 insertions, 1 deletions
diff --git a/tests/makefile.msc b/tests/makefile.msc
index 10bcef81c0..c83ff39f3d 100644
--- a/tests/makefile.msc
+++ b/tests/makefile.msc
@@ -41,6 +41,7 @@ all : \
#
TESTAPPS = testcalendar testdnd testgtk testinput testrgb testselection \
testtext testtextbuffer testsocket testsocket_child \
+ testtreeedit testtreeflow \
testtreecolumns testtreefocus testtreesort testtreeview treestoretest \
testthreads simple
diff --git a/tests/testgtk.c b/tests/testgtk.c
index f2b23a81e9..c0f1da52c4 100644
--- a/tests/testgtk.c
+++ b/tests/testgtk.c
@@ -4774,7 +4774,7 @@ create_list (void)
gtk_scrolled_window_get_hadjustment
(GTK_SCROLLED_WINDOW (scrolled_win)));
- if ((infile = fopen("gtkenums.h", "r")))
+ if ((infile = fopen("../gtk/gtkenums.h", "r")))
{
char buffer[256];
char *pos;