diff options
| author | Tim Redfern <tim@eclectronics.org> | 2012-12-26 23:56:20 +0000 |
|---|---|---|
| committer | Tim Redfern <tim@eclectronics.org> | 2012-12-26 23:56:20 +0000 |
| commit | e4c9063867fe86dff4a89289332cef1a41410df8 (patch) | |
| tree | 82b9c6599a49717c95afe75214ee75c0c232814b /src/testApp.h | |
| parent | a706381940821d7299e0d1eba7ab087a93e75d13 (diff) | |
OSX project
Diffstat (limited to 'src/testApp.h')
| -rwxr-xr-x | src/testApp.h | 14 |
1 files changed, 7 insertions, 7 deletions
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<string> text; - vecTexPt insertionPoint; - vecTexPt selectionStart; - vecTexPt selectionEnd; + vector<string> text; + texPt insertionPoint; + texPt selectionStart; + texPt selectionEnd; bool selected; }; |
