Merge branch 'minor-fixes'

Merge two trivial commits to test how well services such as ohloh and
CIA copes with git branches.

* minor-fixes:
  app: Untabify gimpfiledialog.c
  Minor formating fix in HACKING
This commit is contained in:
Martin Nordholts 2009-05-09 20:48:46 +02:00
commit 9247977196
2 changed files with 9 additions and 9 deletions

View file

@ -68,7 +68,7 @@ the API documentation.
Git
----------
---
GIMP is available from GNOME Git. You can use the following commands
to get GIMP from the the git server:

View file

@ -924,16 +924,16 @@ gimp_file_dialog_get_dirname_from_uri (const gchar *uri)
gchar *dirpath = NULL;
if (filepath != NULL)
{
dirpath = g_path_get_dirname (filepath);
g_free (filepath);
}
{
dirpath = g_path_get_dirname (filepath);
g_free (filepath);
}
if (dirpath != NULL)
{
dirname = g_filename_to_uri (dirpath, NULL, NULL);
g_free (dirpath);
}
{
dirname = g_filename_to_uri (dirpath, NULL, NULL);
g_free (dirpath);
}
else
{
dirname = NULL;