Fixed typo

This commit is contained in:
Robert Osfield
2007-06-14 19:17:31 +00:00
parent 276926523e
commit 97b53024d4
2 changed files with 5 additions and 5 deletions

View File

@@ -235,14 +235,14 @@ class GraphicsWindowEmbedded : public GraphicsWindow
virtual void grabFocusIfPointerInWindow() {}
};
struct GrapicsWindowFunctionProxy
struct GraphicsWindowFunctionProxy
{
GrapicsWindowFunctionProxy(CGraphicsWindowFunction function) { (function)(); }
GraphicsWindowFunctionProxy(CGraphicsWindowFunction function) { (function)(); }
};
#define USE_GRAPICSWINDOW_IMPLEMENTATION(ext) \
extern "C" void graphicswindow_##ext(void); \
static osgViewer::GrapicsWindowFunctionProxy graphicswindowproxy_##ext(graphicswindow_##ext);
static osgViewer::GraphicsWindowFunctionProxy graphicswindowproxy_##ext(graphicswindow_##ext);
#if defined(_WIN32)
#define USE_GRAPHICSWINDOW() USE_GRAPICSWINDOW_IMPLEMENTATION(Win32)