diff options
| author | Tavmjong Bah <tavmjong@free.fr> | 2018-11-25 14:39:10 +0000 |
|---|---|---|
| committer | Tavmjong Bah <tavmjong@free.fr> | 2018-11-25 14:39:10 +0000 |
| commit | e77bcd22e274769ffd86406edaeb6352ab795b2f (patch) | |
| tree | f18a85f132796263c76abc01d5c14ad04446ad86 /src | |
| parent | Fix compile warning of conversion of string constant to char*. (diff) | |
| download | inkscape-e77bcd22e274769ffd86406edaeb6352ab795b2f.tar.gz inkscape-e77bcd22e274769ffd86406edaeb6352ab795b2f.zip | |
Remove unused variable.
Diffstat (limited to 'src')
| -rw-r--r-- | src/io/file-export-cmd.cpp | 3 | ||||
| -rw-r--r-- | src/io/file-export-cmd.h | 2 |
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! |
