Remove unused project_get_make_dir function

git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/branches/build-system@4034 ea778897-0a13-0410-b9d1-a72fbfd435f5
This commit is contained in:
Lex Trotman 2009-07-28 02:03:08 +00:00
parent 6108436176
commit 2cfa55eb0c
3 changed files with 7 additions and 15 deletions

View File

@ -1,3 +1,10 @@
2009-07-28 Lex Trotman <elextr(at)gmail(dot)com>
* src/project.h, src/project.c
Removed unused project_get_make_dir function, this is now per
command.
2009-07-28 Lex Trotman <elextr(at)gmail(dot)com>
* src/build.c, src/build.h, src/project.c, src/keyfile.c, src/filetypes.c

View File

@ -1073,19 +1073,6 @@ gchar *project_get_base_path(void)
}
/* Returns: NULL if the default path should be used, or a UTF-8 path.
* Maybe in future this will support a separate project make path from base path. */
gchar *project_get_make_dir(void)
{
/* GeanyProject *project = app->project;
if (project && ! project->make_in_base_path)
return NULL;
else*/
return project_get_base_path();
}
/* This is to save project-related global settings, NOT project file settings. */
void project_save_prefs(GKeyFile *config)
{

View File

@ -80,8 +80,6 @@ gboolean project_load_file_with_session(const gchar *locale_file_name);
gchar *project_get_base_path(void);
gchar *project_get_make_dir(void);
void project_save_prefs(GKeyFile *config);