diff options
author | Matthew Barnes <mbarnes@src.gnome.org> | 2009-02-17 23:59:18 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2009-02-17 23:59:18 +0800 |
commit | 7ed5f59771262651ee8b0d29a123e43a6ac0b6c6 (patch) | |
tree | dfdd3b5b9b049361f6eeb92ca449c3be83434d31 /e-util/e-corba-utils.c | |
parent | bf3f62476491b492b9d37aee6051e8f1b16ce655 (diff) | |
download | gsoc2013-evolution-7ed5f59771262651ee8b0d29a123e43a6ac0b6c6.tar.gz gsoc2013-evolution-7ed5f59771262651ee8b0d29a123e43a6ac0b6c6.tar.zst gsoc2013-evolution-7ed5f59771262651ee8b0d29a123e43a6ac0b6c6.zip |
Miscellaneous bug fixes.
Kill e-util/e-corba-utils.[ch].
svn path=/branches/kill-bonobo/; revision=37283
Diffstat (limited to 'e-util/e-corba-utils.c')
-rw-r--r-- | e-util/e-corba-utils.c | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/e-util/e-corba-utils.c b/e-util/e-corba-utils.c deleted file mode 100644 index 0288602a7e..0000000000 --- a/e-util/e-corba-utils.c +++ /dev/null @@ -1,43 +0,0 @@ -/* - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) version 3. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with the program; if not, see <http://www.gnu.org/licenses/> - * - * - * Authors: - * Ettore Perazzoli <ettore@ximian.com> - * - * Copyright (C) 1999-2008 Novell, Inc. (www.novell.com) - * - */ - -#ifdef HAVE_CONFIG_H -#include <config.h> -#endif - -#include "e-corba-utils.h" - - -const CORBA_char * -e_safe_corba_string (const char *s) -{ - if (s == NULL) - return (CORBA_char *) ""; - - return s; -} - -CORBA_char * -e_safe_corba_string_dup (const char *s) -{ - return CORBA_string_dup (e_safe_corba_string (s)); -} |