]> git.lyx.org Git - features.git/commitdiff
Embedding: does not write inzipName option in InsetGraphics because inzipName is...
authorBo Peng <bpeng@lyx.org>
Sat, 5 Jan 2008 04:43:13 +0000 (04:43 +0000)
committerBo Peng <bpeng@lyx.org>
Sat, 5 Jan 2008 04:43:13 +0000 (04:43 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@22374 a592a061-630c-0410-9148-cb99ea01b6c8

src/insets/InsetGraphicsParams.cpp

index 9d85bb2a4b0b74f9f16f38cf675cb57e15205186..0afe0c38b6ccdeb9f1abeeba48a0dab1b71db009 100644 (file)
@@ -145,7 +145,6 @@ void InsetGraphicsParams::Write(ostream & os, Buffer const & buffer) const
        // Do not write the default values
        if (!filename.empty()) {
                os << "\tfilename " << filename.outputFilename(buffer.filePath()) << '\n';
-               os << "\tinzipName " << filename.inzipName() << '\n';
                os << "\tembed " << (filename.embedded() ? "true" : "false") << '\n';
        }
        if (lyxscale != 100)
@@ -196,11 +195,13 @@ bool InsetGraphicsParams::Read(Lexer & lex, string const & token, string const &
                lex.eatLine();
                filename.set(lex.getString(), bufpath);
        } else if (token == "inzipName") {
+               // this option is currently ignored because only files in
+               // or under current document path is embeddable, and their
+               // inzipName is automatically determined.
                lex.eatLine();
-               filename.setInzipName(lex.getString());
        } else if (token == "embed") {
                lex.next();
-               filename.setEmbed(lex.getBool());               
+               filename.setEmbed(lex.getBool());
        } else if (token == "lyxscale") {
                lex.next();
                lyxscale = lex.getInteger();