Skip to content

Commit 184bb11

Browse files
authored
Vector graphics fix (#7960)
1 parent 55e58f8 commit 184bb11

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

addons/ofxVectorGraphics/src/ofxVectorGraphics.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ ofxVectorGraphics::ofxVectorGraphics(){
150150
}
151151

152152
//----------------------------------------------------------
153-
void ofxVectorGraphics::beginEPS(string fileName, int x, int y, int w, int h){
153+
void ofxVectorGraphics::beginEPS(std::string fileName, int x, int y, int w, int h){
154154
creeps.newFile(ofToDataPath(fileName).c_str(), x, y, x+w, y+h);
155155
bRecord = true;
156156

addons/ofxVectorGraphics/src/ofxVectorGraphics.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class ofxVectorGraphics{
1919

2020
//----------------------------------------------------------
2121
//only call these two functions when you are ready to capture your graphics to disk!!!
22-
void beginEPS(string fileName, int x = 0, int y = 0, int w = ofGetWidth(), int h = ofGetHeight() );
22+
void beginEPS(std::string fileName, int x = 0, int y = 0, int w = ofGetWidth(), int h = ofGetHeight() );
2323
void endEPS();
2424

2525
//----------------------------------------------------------

0 commit comments

Comments
 (0)