diff options
Diffstat (limited to 'src/trace/trace.cpp')
| -rw-r--r-- | src/trace/trace.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/trace/trace.cpp b/src/trace/trace.cpp index 925e4e195..5833db4fd 100644 --- a/src/trace/trace.cpp +++ b/src/trace/trace.cpp @@ -180,7 +180,7 @@ public: * Informs the observer how much has been completed. * Return false if the processing should be aborted. */ - virtual bool progress(float percentCompleted) + virtual bool progress(float /*percentCompleted*/) { //Tracer *tracer = (Tracer *)context; //## Allow the GUI to update @@ -194,7 +194,7 @@ public: * Send an error string to the Observer. Processing will * be halted. */ - virtual void error(const std::string &msg) + virtual void error(const std::string &/*msg*/) { //Tracer *tracer = (Tracer *)context; } @@ -303,7 +303,7 @@ Tracer::sioxProcessImage(SPImage *img, { //g_message("hit!\n"); //dumpMap->setPixelLong(dumpMap, col, row, 0L); - simage.setConfidence(col, row, + simage.setConfidence(col, row, Siox::UNKNOWN_REGION_CONFIDENCE); } else @@ -465,7 +465,7 @@ void Tracer::traceThread() msgStack->flash(Inkscape::NORMAL_MESSAGE, _("Trace: Starting trace...")); desktop->updateCanvasNow(); - + std::vector<TracingEngineResult> results = engine->trace(pixbuf); //printf("nrPaths:%d\n", results.size()); |
