From e4c9063867fe86dff4a89289332cef1a41410df8 Mon Sep 17 00:00:00 2001 From: Tim Redfern Date: Wed, 26 Dec 2012 23:56:20 +0000 Subject: OSX project --- src/testApp.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/testApp.h') diff --git a/src/testApp.h b/src/testApp.h index de24006..6c7ccf2 100755 --- a/src/testApp.h +++ b/src/testApp.h @@ -3,9 +3,9 @@ #include "ofMain.h" #include "ofxFensterManager.h" -struct vecTexPt { - vecTexPt(int r=0,int c=0) {row=r;column=c;}; - int row; +struct texPt { + texPt(int r=0,int c=0) {row=r;column=c;}; + int row; int column; }; @@ -40,10 +40,10 @@ class editorWindow: public ofxFensterListener{ void keyPressed(int key); void keyReleased(int key); private: - vector text; - vecTexPt insertionPoint; - vecTexPt selectionStart; - vecTexPt selectionEnd; + vector text; + texPt insertionPoint; + texPt selectionStart; + texPt selectionEnd; bool selected; }; -- cgit v1.2.3