From 28f47d9c7e938c7e7b79f76f274bee55f1e4fb4e Mon Sep 17 00:00:00 2001 From: =?utf8?q?Lars=20Gullik=20Bj=C3=B8nnes?= Date: Mon, 30 Jul 2001 22:14:45 +0000 Subject: [PATCH] *** empty log message *** git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2392 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/insets/ChangeLog | 2 ++ src/insets/insetert.C | 6 +++--- src/tabular.C | 1 + 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/src/insets/ChangeLog b/src/insets/ChangeLog index dd01e0bd6d..184045fa1a 100644 --- a/src/insets/ChangeLog +++ b/src/insets/ChangeLog @@ -1,5 +1,7 @@ 2001-07-30 Lars Gullik Bjønnes + * insetert.C: change back to "ERT" + * insetfloat.C: handliign of RMB on label added. 2001-07-30 Jean-Marc Lasgouttes diff --git a/src/insets/insetert.C b/src/insets/insetert.C index d6df241c66..200697d991 100644 --- a/src/insets/insetert.C +++ b/src/insets/insetert.C @@ -135,7 +135,7 @@ void InsetERT::insetButtonRelease(BufferView * bv, if ((x >= 0) && (x < button_length) && (y >= button_top_y) && (y <= button_bottom_y)) { if (collapsed_) { - setLabel(_("666")); + setLabel(_("ERT")); } else { setLabel(get_new_label()); } @@ -236,7 +236,7 @@ string const InsetERT::get_new_label() const la += "..."; } if (la.empty()) { - la = _("666"); + la = _("ERT"); } return la; } @@ -247,7 +247,7 @@ void InsetERT::setButtonLabel() if (collapsed_) { setLabel(get_new_label()); } else { - setLabel(_("666")); + setLabel(_("ERT")); } } diff --git a/src/tabular.C b/src/tabular.C index 903cb7b377..655900a1e9 100644 --- a/src/tabular.C +++ b/src/tabular.C @@ -935,6 +935,7 @@ int LyXTabular::right_column_of_cell(int cell) const // Perfect case for a template... (Lgb) +// or perhaps not... #if 1 template string const write_attribute(string const & name, T const & t) -- 2.39.5