formatting

SVN revision: 31292
This commit is contained in:
Sebastian Dransfeld 2007-08-13 05:33:26 +00:00
parent 8ef049c3da
commit b9c551c57d
1 changed files with 9 additions and 5 deletions

View File

@ -245,9 +245,10 @@ efreet_mime_type_icon_get(const char *mime, const char *theme, const char *size)
* @return Returns mime type as a string * @return Returns mime type as a string
* @brief Retreive the mime type of a file using magic * @brief Retreive the mime type of a file using magic
*/ */
const char *efreet_mime_magic_type_get(const char *file) const char *
efreet_mime_magic_type_get(const char *file)
{ {
return efreet_mime_magic_check_priority(file,0,0); return efreet_mime_magic_check_priority(file, 0, 0);
} }
/** /**
@ -255,7 +256,8 @@ const char *efreet_mime_magic_type_get(const char *file)
* @return Returns mime type as a string * @return Returns mime type as a string
* @brief Retreive the mime type of a file using globs * @brief Retreive the mime type of a file using globs
*/ */
const char *efreet_mime_globs_type_get(const char *file) const char *
efreet_mime_globs_type_get(const char *file)
{ {
Efreet_Mime_Glob *g; Efreet_Mime_Glob *g;
char *s, *sl, *p; char *s, *sl, *p;
@ -307,7 +309,8 @@ const char *efreet_mime_globs_type_get(const char *file)
* @return Returns mime type as a string * @return Returns mime type as a string
* @brief Retreive the special mime type of a file * @brief Retreive the special mime type of a file
*/ */
const char *efreet_mime_special_type_get(const char *file) const char *
efreet_mime_special_type_get(const char *file)
{ {
return efreet_mime_special_check(file); return efreet_mime_special_check(file);
} }
@ -318,7 +321,8 @@ const char *efreet_mime_special_type_get(const char *file)
* @return Returns mime type as a string * @return Returns mime type as a string
* @brief Retreive the fallback mime type of a file * @brief Retreive the fallback mime type of a file
*/ */
const char *efreet_mime_fallback_type_get(const char *file) const char *
efreet_mime_fallback_type_get(const char *file)
{ {
return efreet_mime_fallback_check(file); return efreet_mime_fallback_check(file);
} }