From b896fa110d92118bcea1269c62a92512292570bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Spitzm=C3=BCller?= Date: Tue, 22 Jul 2008 16:13:59 +0000 Subject: [PATCH] * src/insets/InsetTabular.h: - implement hasFixedWidth() (fixes part of bug 3484). git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@25805 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/insets/InsetTabular.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/insets/InsetTabular.h b/src/insets/InsetTabular.h index 5cf3d7eb3d..c2395698f8 100644 --- a/src/insets/InsetTabular.h +++ b/src/insets/InsetTabular.h @@ -681,6 +681,8 @@ private: virtual bool forcePlainLayout(idx_type = 0) const; /// virtual bool allowParagraphCustomization(idx_type = 0) const; + /// Is the width forced to some value? + bool hasFixedWidth() const { return isFixedWidth; } };