Index: /OpenSceneGraph/trunk/include/osg/GraphicsContext
===================================================================
--- /OpenSceneGraph/trunk/include/osg/GraphicsContext (revision 10747)
+++ /OpenSceneGraph/trunk/include/osg/GraphicsContext (revision 10890)
@@ -257,8 +257,8 @@
         void runOperations();
 
-        typedef std::list< ref_ptr<Operation> > OperationQueue;
+        typedef std::list< ref_ptr<Operation> > GraphicsOperationQueue;
         
         /** Get the operations queue, not you must use the OperationsMutex when accessing the queue.*/
-        OperationQueue& getOperationsQueue() { return _operations; }
+        GraphicsOperationQueue& getOperationsQueue() { return _operations; }
 
         /** Get the operations queue mutex.*/
@@ -472,5 +472,5 @@
         OpenThreads::Mutex                  _operationsMutex;
         osg::ref_ptr<osg::RefBlock>         _operationsBlock;
-        OperationQueue                      _operations;
+        GraphicsOperationQueue              _operations;
         osg::ref_ptr<Operation>             _currentOperation;
 
Index: /OpenSceneGraph/trunk/src/osg/GraphicsContext.cpp
===================================================================
--- /OpenSceneGraph/trunk/src/osg/GraphicsContext.cpp (revision 10833)
+++ /OpenSceneGraph/trunk/src/osg/GraphicsContext.cpp (revision 10890)
@@ -680,5 +680,5 @@
     OpenThreads::ScopedLock<OpenThreads::Mutex> lock(_operationsMutex);
 
-    for(OperationQueue::iterator itr = _operations.begin();
+    for(GraphicsOperationQueue::iterator itr = _operations.begin();
         itr!=_operations.end();)
     {
@@ -701,5 +701,5 @@
 
     // find the remove all operations with specified name
-    for(OperationQueue::iterator itr = _operations.begin();
+    for(GraphicsOperationQueue::iterator itr = _operations.begin();
         itr!=_operations.end();)
     {
@@ -751,5 +751,5 @@
     }
 
-    for(OperationQueue::iterator itr = _operations.begin();
+    for(GraphicsOperationQueue::iterator itr = _operations.begin();
         itr != _operations.end();
         )
Index: /OpenSceneGraph/trunk/src/osgWrappers/osg/GraphicsContext.cpp
===================================================================
--- /OpenSceneGraph/trunk/src/osgWrappers/osg/GraphicsContext.cpp (revision 10767)
+++ /OpenSceneGraph/trunk/src/osgWrappers/osg/GraphicsContext.cpp (revision 10890)
@@ -34,5 +34,5 @@
 TYPE_NAME_ALIAS(std::vector< osg::GraphicsContext * >, osg::GraphicsContext::GraphicsContexts)
 
-TYPE_NAME_ALIAS(std::list< osg::ref_ptr< osg::Operation > >, osg::GraphicsContext::OperationQueue)
+TYPE_NAME_ALIAS(std::list< osg::ref_ptr< osg::Operation > >, osg::GraphicsContext::GraphicsOperationQueue)
 
 TYPE_NAME_ALIAS(std::list< osg::Camera * >, osg::GraphicsContext::Cameras)
@@ -114,7 +114,7 @@
 	          "Run the operations. ",
 	          "");
-	I_Method0(osg::GraphicsContext::OperationQueue &, getOperationsQueue,
-	          Properties::NON_VIRTUAL,
-	          __OperationQueue_R1__getOperationsQueue,
+	I_Method0(osg::GraphicsContext::GraphicsOperationQueue &, getOperationsQueue,
+	          Properties::NON_VIRTUAL,
+	          __GraphicsOperationQueue_R1__getOperationsQueue,
 	          "Get the operations queue, not you must use the OperationsMutex when accessing the queue. ",
 	          "");
@@ -396,6 +396,6 @@
 	                 __OpenThreads_Mutex_P1__getOperationsMutex, 
 	                 0);
-	I_SimpleProperty(osg::GraphicsContext::OperationQueue &, OperationsQueue, 
-	                 __OperationQueue_R1__getOperationsQueue, 
+	I_SimpleProperty(osg::GraphicsContext::GraphicsOperationQueue &, OperationsQueue, 
+	                 __GraphicsOperationQueue_R1__getOperationsQueue, 
 	                 0);
 	I_SimpleProperty(osg::GraphicsContext::ResizedCallback *, ResizedCallback, 
