more checks

This commit is contained in:
Colin Leroy 2004-07-21 09:51:25 +00:00
parent 54ad5d0fd0
commit 84bef5beb5
4 changed files with 8 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2004-07-21 [colin] 0.9.12cvs33.11
* src/gtk/filesel.c
More check
2004-07-21 [colin] 0.9.12cvs33.10
* src/compose.c

View file

@ -64,3 +64,4 @@
( cvs diff -u -r 1.65.2.8 -r 1.65.2.9 src/codeconv.c; ) > 0.9.12cvs33.8.patchset
( cvs diff -u -r 1.65.2.9 -r 1.65.2.10 src/codeconv.c; cvs diff -u -r 1.382.2.29 -r 1.382.2.30 src/compose.c; ) > 0.9.12cvs33.9.patchset
( cvs diff -u -r 1.382.2.31 -r 1.382.2.32 src/compose.c; cvs diff -u -r 1.23.2.3 -r 1.23.2.4 src/crash.c; cvs diff -u -r 1.8.2.1 -r 1.8.2.2 src/export.c; cvs diff -u -r 1.13.2.2 -r 1.13.2.3 src/import.c; cvs diff -u -r 1.94.2.22 -r 1.94.2.23 src/messageview.c; cvs diff -u -r 1.83.2.12 -r 1.83.2.13 src/mimeview.c; cvs diff -u -r 1.5.2.1 -r 1.5.2.2 src/prefs_spelling.c; cvs diff -u -r 1.3.2.5 -r 1.3.2.6 src/prefs_themes.c; cvs diff -u -r 1.395.2.23 -r 1.395.2.24 src/summaryview.c; cvs diff -u -r 1.2.2.8 -r 1.2.2.9 src/gtk/filesel.c; cvs diff -u -r 1.1.4.1 -r 1.1.4.2 src/gtk/filesel.h; cvs diff -u -r 1.5.2.3 -r 1.5.2.4 src/gtk/pluginwindow.c; ) > 0.9.12cvs33.10.patchset
( cvs diff -u -r 1.2.2.9 -r 1.2.2.10 src/gtk/filesel.c; ) > 0.9.12cvs33.11.patchset

View file

@ -13,7 +13,7 @@ INTERFACE_AGE=0
BINARY_AGE=0
EXTRA_VERSION=33
EXTRA_RELEASE=
EXTRA_GTK2_VERSION=.10
EXTRA_GTK2_VERSION=.11
if test \( $EXTRA_VERSION -eq 0 \) -o \( "x$EXTRA_RELEASE" != "x" \); then
VERSION=${MAJOR_VERSION}.${MINOR_VERSION}.${MICRO_VERSION}${EXTRA_RELEASE}${EXTRA_GTK2_VERSION}

View file

@ -63,7 +63,7 @@ static GList *filesel_create(const gchar *title, const gchar *path,
gtk_file_chooser_set_select_multiple (GTK_FILE_CHOOSER(chooser), multiple_files);
if (path) {
if (path && strlen(path) > 0) {
char *filename = NULL;
char *realpath = strdup(path);
if (path[strlen(path)-1] == G_DIR_SEPARATOR) {