aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-shell-utils.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2007-11-15 06:04:21 +0800
committerMatthew Barnes <mbarnes@src.gnome.org>2007-11-15 06:04:21 +0800
commit9e4fcb29cf7f05c18f7fd34e318f9e795fa32e91 (patch)
tree2e1e96f33404781354c422a7e9beaf458ebeb655 /shell/e-shell-utils.c
parent7e8f8bb9e5167b0219b48ab3e8062080d3740b0a (diff)
downloadgsoc2013-evolution-9e4fcb29cf7f05c18f7fd34e318f9e795fa32e91.tar
gsoc2013-evolution-9e4fcb29cf7f05c18f7fd34e318f9e795fa32e91.tar.gz
gsoc2013-evolution-9e4fcb29cf7f05c18f7fd34e318f9e795fa32e91.tar.bz2
gsoc2013-evolution-9e4fcb29cf7f05c18f7fd34e318f9e795fa32e91.tar.lz
gsoc2013-evolution-9e4fcb29cf7f05c18f7fd34e318f9e795fa32e91.tar.xz
gsoc2013-evolution-9e4fcb29cf7f05c18f7fd34e318f9e795fa32e91.tar.zst
gsoc2013-evolution-9e4fcb29cf7f05c18f7fd34e318f9e795fa32e91.zip
** Remove trailing whitespace from source code.
2007-11-14 Matthew Barnes <mbarnes@redhat.com> ** Remove trailing whitespace from source code. svn path=/trunk/; revision=34537
Diffstat (limited to 'shell/e-shell-utils.c')
-rw-r--r--shell/e-shell-utils.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/shell/e-shell-utils.c b/shell/e-shell-utils.c
index c8846dfff8..0343c4eb25 100644
--- a/shell/e-shell-utils.c
+++ b/shell/e-shell-utils.c
@@ -118,14 +118,14 @@ e_shell_folder_name_is_valid (const char *name,
*reason_return = _("No folder name specified.");
return FALSE;
}
-
+
/* GtkEntry is broken - if you hit KP_ENTER you get a \r inserted... */
if (strchr (name, '\r')) {
if (reason_return != NULL)
*reason_return = _("Folder name cannot contain the Return character.");
return FALSE;
}
-
+
if (strchr (name, E_PATH_SEPARATOR) != NULL) {
if (reason_return != NULL)
*reason_return = _("Folder name cannot contain the character \"/\".");
@@ -145,7 +145,7 @@ e_shell_folder_name_is_valid (const char *name,
}
*reason_return = NULL;
-
+
return TRUE;
}