diff src/Modules/Output/Graphics/Devices/GraphicsOutputDevice.cc @ 228:82e0dc3dfd16

- All \t to two spaces (style guide compliance)
author tomwalters
date Fri, 15 Oct 2010 05:46:53 +0000
parents 73c6d61440ad
children ddf35dd82d63
line wrap: on
line diff
--- a/src/Modules/Output/Graphics/Devices/GraphicsOutputDevice.cc	Fri Oct 15 05:40:53 2010 +0000
+++ b/src/Modules/Output/Graphics/Devices/GraphicsOutputDevice.cc	Fri Oct 15 05:46:53 2010 +0000
@@ -19,7 +19,7 @@
 #include "Modules/Output/Graphics/Devices/GraphicsOutputDevice.h"
 
 GraphicsOutputDevice::GraphicsOutputDevice(Parameters *pParam) {
-	m_pParam = pParam;
+  m_pParam = pParam;
 }
 
 void GraphicsOutputDevice::gVertex3f(float x,
@@ -28,8 +28,8 @@
                                      float r,
                                      float g,
                                      float b) {
-	gColor3f(r, g, b);
-	gVertex3f(x, y, z);
+  gColor3f(r, g, b);
+  gVertex3f(x, y, z);
 }
 
 void GraphicsOutputDevice::gVertex2f(float x,
@@ -37,17 +37,17 @@
                                      float r,
                                      float g,
                                      float b) {
-	gColor3f(r, g, b);
-	gVertex3f(x, y, 0);
+  gColor3f(r, g, b);
+  gVertex3f(x, y, 0);
 }
 
 void GraphicsOutputDevice::gVertex2f(float x, float y) {
-	gVertex3f(x, y, 0);
+  gVertex3f(x, y, 0);
 }
 
 void GraphicsOutputDevice::gText2f(float x,
                                    float y,
                                    const char *sStr,
                                    bool bRotated) {
-	gText3f(x, y, 0, sStr, bRotated);
+  gText3f(x, y, 0, sStr, bRotated);
 }