Change of description of tm_get_real_path(). Patch by Dimitar Zhekov. Thanks.

git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@5054 ea778897-0a13-0410-b9d1-a72fbfd435f5
This commit is contained in:
Frank Lanitz 2010-06-20 15:03:30 +00:00
parent 6b4ba38e6d
commit 582e841e3f
2 changed files with 9 additions and 3 deletions

View File

@ -1,3 +1,10 @@
2010-06-20 Frank Lanitz <frank(at)frank(dot)uvena(dot)de>
* tagmanager/tm_work_object.c:
Change of description of tm_get_real_path(). Patch by Dimitar Zhekov.
Thanks.
2010-06-18 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
* src/ui_utils.h, src/dialogs.c, src/plugindata.h, src/search.c,

View File

@ -79,10 +79,9 @@ typedef struct _TMWorkObjectClass
/*!
Given a file name, returns a newly allocated string containing the realpath()
of the file. However, unlike realpath, a reasonable guess is returned even if
the file does not exist, which may often be the case
of the file.
\param file_name The original file_name
\return A newly allocated string containing the real path to the file
\return A newly allocated string containing the real path to the file. NULL if none is available.
*/
gchar *tm_get_real_path(const gchar *file_name);