Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/intern
diff options
context:
space:
mode:
authorNathan Letwory <nathan@letworyinteractive.com>2011-05-02 12:39:17 +0400
committerNathan Letwory <nathan@letworyinteractive.com>2011-05-02 12:39:17 +0400
commitaecb892e1945dee4bffa36ae2d3d2871d9305516 (patch)
treee5d715128ae68db2c311a143e33966e1f3bef531 /intern
parent3986896500e83fbac09c2b377fd41961030d78a3 (diff)
Also add build fix for OSX (not-tested, so OSXers, please do test).
Diffstat (limited to 'intern')
-rw-r--r--intern/ghost/intern/GHOST_SystemCarbon.h5
-rw-r--r--intern/ghost/intern/GHOST_SystemCocoa.h5
2 files changed, 10 insertions, 0 deletions
diff --git a/intern/ghost/intern/GHOST_SystemCarbon.h b/intern/ghost/intern/GHOST_SystemCarbon.h
index ae15afdbcde..b0cf622f709 100644
--- a/intern/ghost/intern/GHOST_SystemCarbon.h
+++ b/intern/ghost/intern/GHOST_SystemCarbon.h
@@ -191,6 +191,11 @@ public:
*/
virtual void putClipboard(GHOST_TInt8 *buffer, bool selection) const;
+ /**
+ * @see GHOST_ISystem
+ */
+ int toggleConsole(int action) { return 0; }
+
protected:
/**
* Initializes the system.
diff --git a/intern/ghost/intern/GHOST_SystemCocoa.h b/intern/ghost/intern/GHOST_SystemCocoa.h
index dbe879dc629..e7a8178a382 100644
--- a/intern/ghost/intern/GHOST_SystemCocoa.h
+++ b/intern/ghost/intern/GHOST_SystemCocoa.h
@@ -227,6 +227,11 @@ public:
* @return Indication whether the event was handled.
*/
GHOST_TSuccess handleApplicationBecomeActiveEvent();
+
+ /**
+ * @see GHOST_ISystem
+ */
+ int toggleConsole(int action) { return 0; }
protected: