]> git.lyx.org Git - lyx.git/blobdiff - src/insets/Inset.h
Replace home made temp file creation with safer (and cleaner) Qt' solution. Should...
[lyx.git] / src / insets / Inset.h
index 172add48a9881ccce84c894c90a12cb1a564504c..4237cfd5eb8abb677f5f762650e24c78e334af29 100644 (file)
@@ -354,10 +354,10 @@ public:
        virtual bool insetAllowed(InsetCode) const { return false; }
        /// should this inset use the empty layout by default rather than 
        /// the standard layout? (default: only if that is forced.)
-       virtual bool useEmptyLayout() const { return forceEmptyLayout(); }
+       virtual bool usePlainLayout() const { return forcePlainLayout(); }
        /// if this inset has paragraphs should they be forced to use the
        /// empty layout?
-       virtual bool forceEmptyLayout(idx_type = 0) const { return false; }
+       virtual bool forcePlainLayout(idx_type = 0) const { return false; }
        /// if this inset has paragraphs should the user be allowed to
        /// customize alignment, etc?
        virtual bool allowParagraphCustomization(idx_type = 0) const { return true; }