diff options
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; }; |
