summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTavmjong Bah <tavmjong@free.fr>2018-11-25 14:39:10 +0000
committerTavmjong Bah <tavmjong@free.fr>2018-11-25 14:39:10 +0000
commite77bcd22e274769ffd86406edaeb6352ab795b2f (patch)
treef18a85f132796263c76abc01d5c14ad04446ad86
parentFix compile warning of conversion of string constant to char*. (diff)
downloadinkscape-e77bcd22e274769ffd86406edaeb6352ab795b2f.tar.gz
inkscape-e77bcd22e274769ffd86406edaeb6352ab795b2f.zip
Remove unused variable.
-rw-r--r--src/io/file-export-cmd.cpp3
-rw-r--r--src/io/file-export-cmd.h2
2 files changed, 1 insertions, 4 deletions
diff --git a/src/io/file-export-cmd.cpp b/src/io/file-export-cmd.cpp
index f9ee8e4a0..0e57ae01e 100644
--- a/src/io/file-export-cmd.cpp
+++ b/src/io/file-export-cmd.cpp
@@ -37,8 +37,7 @@
#include "extension/init.h"
InkFileExportCmd::InkFileExportCmd()
- : over_write(false)
- , export_overwrite(false)
+ : export_overwrite(false)
, export_area_drawing(false)
, export_area_page(false)
, export_margin(0)
diff --git a/src/io/file-export-cmd.h b/src/io/file-export-cmd.h
index 859fbc092..56ac9fd96 100644
--- a/src/io/file-export-cmd.h
+++ b/src/io/file-export-cmd.h
@@ -37,8 +37,6 @@ private:
public:
// Should be private, but this is just temporary code (I hope!).
- bool over_write;
-
// One-to-one correspondence with command line options
std::string export_filename; // Only if one file is processed!