SF.net SVN: geany: [2595] trunk
eht16 at users.sourceforge.net
eht16 at xxxxx
Fri May 16 14:35:41 UTC 2008
Revision: 2595
http://geany.svn.sourceforge.net/geany/?rev=2595&view=rev
Author: eht16
Date: 2008-05-16 07:35:41 -0700 (Fri, 16 May 2008)
Log Message:
-----------
Rename BuildInfo struct to GeanyBuildInfo.
Modified Paths:
--------------
trunk/ChangeLog
trunk/src/build.c
trunk/src/build.h
trunk/src/plugindata.h
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2008-05-16 14:17:54 UTC (rev 2594)
+++ trunk/ChangeLog 2008-05-16 14:35:41 UTC (rev 2595)
@@ -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>
Modified: trunk/src/build.c
===================================================================
--- trunk/src/build.c 2008-05-16 14:17:54 UTC (rev 2594)
+++ trunk/src/build.c 2008-05-16 14:35:41 UTC (rev 2595)
@@ -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;
Modified: trunk/src/build.h
===================================================================
--- trunk/src/build.h 2008-05-16 14:17:54 UTC (rev 2594)
+++ trunk/src/build.h 2008-05-16 14:35:41 UTC (rev 2595)
@@ -32,18 +32,18 @@
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
Modified: trunk/src/plugindata.h
===================================================================
--- trunk/src/plugindata.h 2008-05-16 14:17:54 UTC (rev 2594)
+++ trunk/src/plugindata.h 2008-05-16 14:35:41 UTC (rev 2595)
@@ -165,7 +165,7 @@
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 */
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the Commits
mailing list