Rename BuildInfo struct to GeanyBuildInfo.

git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@2595 ea778897-0a13-0410-b9d1-a72fbfd435f5
This commit is contained in:
Enrico Tröger 2008-05-16 14:35:41 +00:00
parent 311b82ebb2
commit 41801ae852
4 changed files with 13 additions and 11 deletions

View File

@ -8,6 +8,8 @@
src/templates.c, src/templates.h:
Rename document struct to GeanyDocument.
Rename filetype struct to GeanyFiletype.
* src/build.c, src/build.h, src/plugindata.h:
Rename BuildInfo struct to GeanyBuildInfo.
2008-05-16 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>

View File

@ -58,7 +58,7 @@
#include "win32.h"
BuildInfo build_info = {GBO_COMPILE, 0, NULL, GEANY_FILETYPES_NONE, NULL};
GeanyBuildInfo build_info = {GBO_COMPILE, 0, NULL, GEANY_FILETYPES_NONE, NULL};
static gchar *current_dir_entered = NULL;

View File

@ -32,18 +32,18 @@ typedef enum /* Geany Build Options */
GBO_MAKE_ALL,
GBO_MAKE_CUSTOM,
GBO_MAKE_OBJECT
} build_type;
} GeanyBuildType;
typedef struct BuildInfo
typedef struct GeanyBuildInfo
{
build_type type; /* current action(one of the above enumeration) */
GPid pid; /* process id of the spawned process */
gchar *dir;
guint file_type_id;
gchar *custom_target;
} BuildInfo;
GeanyBuildType type; /* current action(one of the above enumeration) */
GPid pid; /* process id of the spawned process */
gchar *dir;
guint file_type_id;
gchar *custom_target;
} GeanyBuildInfo;
extern BuildInfo build_info;
extern GeanyBuildInfo build_info;
typedef struct BuildMenuItems

View File

@ -165,7 +165,7 @@ typedef struct GeanyData
struct GeanySearchPrefs *search_prefs; /**< Search-related settings */
struct GeanyToolPrefs *tool_prefs; /**< Tool settings */
struct GeanyTemplatePrefs *template_prefs; /**< Template settings */
struct BuildInfo *build_info; /**< Current build information */
struct GeanyBuildInfo *build_info; /**< Current build information */
struct DocumentFuncs *documents; /**< See document.h */
struct ScintillaFuncs *sci; /**< See sciwrappers.h */