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
diff options
context:
space:
mode:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2006-03-04 19:23:15 +0300
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2006-03-04 19:23:15 +0300
commit2f5df4631d2e72afe54380148335f1b6d2fb2ed2 (patch)
treebbeee9a07d2deb10fe131e6dff782c61a4415cb0 /intern/ghost/GHOST_IWindow.h
parentae32a538ddf5b4f17c4f956ecafba3722a613d90 (diff)
Fixes for some gcc 4 warnings in intern/. More than 100 lines of warnings
for 2 unused parameters in templated c++ code, that's just ridiculous.
Diffstat (limited to 'intern/ghost/GHOST_IWindow.h')
-rw-r--r--intern/ghost/GHOST_IWindow.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/intern/ghost/GHOST_IWindow.h b/intern/ghost/GHOST_IWindow.h
index bd15df3dba8..903d1e4498d 100644
--- a/intern/ghost/GHOST_IWindow.h
+++ b/intern/ghost/GHOST_IWindow.h
@@ -79,7 +79,7 @@ public:
* Returns the type of drawing context used in this window.
* @return The current type of drawing context.
*/
- inline virtual GHOST_TDrawingContextType getDrawingContextType() = 0;
+ virtual GHOST_TDrawingContextType getDrawingContextType() = 0;
/**
* Tries to install a rendering context in this window.
@@ -193,7 +193,7 @@ public:
* Returns the window user data.
* @return The window user data.
*/
- inline virtual GHOST_TUserDataPtr getUserData() const = 0;
+ virtual GHOST_TUserDataPtr getUserData() const = 0;
/**
* Changes the window user data.