]> git.lyx.org Git - lyx.git/blobdiff - src/insets/Inset.h
* InsetTabular.cpp: fix logic of multirow top/bottom line output (bug #7578)
[lyx.git] / src / insets / Inset.h
index 7b2c04c6276d69a1be30822a47ca7709009384cf..2d272e34365a7ea44a920119210e79425d4414bd 100644 (file)
@@ -402,9 +402,6 @@ public:
        /// Is the content of this inset part of the output document?
        virtual bool producesOutput() const { return true; }
 
-       /// Skip this inset while searching?
-       virtual bool skipOnSearch() const { return false; }
-
        /// \return Tool tip for this inset.
        /// This default implementation returns an empty string.
        virtual docstring toolTip(BufferView const & bv, int x, int y) const;
@@ -418,13 +415,7 @@ public:
        virtual docstring contextMenuName() const;
 
 
-       // FIXME This should really disappear in favor of 
-       //      docstring name() const { return from_ascii(insetName(lyxCode()))); }
-       // There's no reason to be using different names in different places.
-       // But to do this we would need to change the file format, since the names
-       // used there don't correspond to what is used here. 
-       ///
-       virtual docstring name() const;
+       virtual docstring layoutName() const;
        ///
        virtual InsetLayout const & getLayout() const;
        /// Is this inset's layout defined in the document's textclass?