]> git.lyx.org Git - lyx.git/blobdiff - src/factory.cpp
Kornel's gcc compile fix.
[lyx.git] / src / factory.cpp
index 85c84d9b945ea09d6d504394af7405dbcecba121..e03daaa1ad43ce4047779e89b84457e51950e7fd 100644 (file)
@@ -161,7 +161,7 @@ Inset * createInsetHelper(Buffer & buf, FuncRequest const & cmd)
                        string const argument = to_utf8(cmd.argument());
                        if (params.documentClass().floats().typeExist(argument)) {
                                auto_ptr<InsetFloat> p(new InsetFloat(buf, argument));
-                               p->setWide(true, params);
+                               p->setWide(true);
                                return p.release();
                        }
                        lyxerr << "Non-existent float type: " << argument << endl;
@@ -387,22 +387,22 @@ Inset * createInsetHelper(Buffer & buf, FuncRequest const & cmd)
                        else if (name == "hrulefill")
                                isp.kind = InsetSpaceParams::HRULEFILL;
                        else if (name == "hspace") {
-                               if (len.empty() || !isValidLength(len)) {
+                               if (len.empty() || !isValidGlueLength(len)) {
                                        lyxerr << "LyX function 'space-insert hspace' "
                                               << "needs a valid length argument." << endl;
                                        break;
                                }
                                isp.kind = InsetSpaceParams::CUSTOM;
-                               isp.length = Length(len);
+                               isp.length = GlueLength(len);
                        }
                        else if (name == "hspace*") {
-                               if (len.empty() || !isValidLength(len)) {
+                               if (len.empty() || !isValidGlueLength(len)) {
                                        lyxerr << "LyX function 'space-insert hspace*' "
                                               << "needs a valid length argument." << endl;
                                        break;
                                }
                                isp.kind = InsetSpaceParams::CUSTOM_PROTECTED;
-                               isp.length = Length(len);
+                               isp.length = GlueLength(len);
                        }
                        else {
                                lyxerr << "Wrong argument for LyX function 'space-insert'." << endl;