diff --git a/ChangeLog b/ChangeLog index 23b2ac43ce..f0b34219f3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2002-03-12 Jean-Marc Lasgouttes + * README: add bulgarian + * configure.in (ALL_LINGUAS): add bg 2002-03-12 Lars Gullik Bjønnes diff --git a/README b/README index 7d3b882bff..617c3d45ed 100644 --- a/README +++ b/README @@ -132,6 +132,7 @@ Does LyX have support for non-English speakers/writers/readers? bindings as well): Basque (eu) + Bulgarian (bg) Catalan (ca) Czech (cs) Danish (da) @@ -156,6 +157,7 @@ Does LyX have support for non-English speakers/writers/readers? Keymaps can ease typing in one or more of the following languages: Arabic + Bulgarian Czech French, Swiss French German, Swiss German diff --git a/src/BufferView_pimpl.C b/src/BufferView_pimpl.C index 0970eac913..b0521442c7 100644 --- a/src/BufferView_pimpl.C +++ b/src/BufferView_pimpl.C @@ -2751,10 +2751,6 @@ bool BufferView::Pimpl::Dispatch(kb_action action, string const & argument) } break; - case LFUN_INSET_TEXT: - insertAndEditInset(new InsetText(buffer_->params)); - break; - case LFUN_INSET_ERT: insertAndEditInset(new InsetERT(buffer_->params)); break; diff --git a/src/ChangeLog b/src/ChangeLog index 7576954914..a6233d3363 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,11 @@ +2002-03-06 John Levon + + * commandtags.h: + * LyXAction.C: + * lyxfunc.C: + * BufferView_pimpl.C: remove unused LFUN_CORE, + LFUN_TEXT_INSET + 2002-03-13 Lars Gullik Bjønnes * Painter.C (display): anon helper function, adjust code for this diff --git a/src/LyXAction.C b/src/LyXAction.C index ad6b2f3f4e..093a630691 100644 --- a/src/LyXAction.C +++ b/src/LyXAction.C @@ -379,8 +379,6 @@ void LyXAction::init() N_("Tabular Features"), Noop }, { LFUN_INSET_TABULAR, "tabular-insert", N_("Insert a new Tabular Inset"), Noop }, - { LFUN_INSET_TEXT, "text-insert", - N_("Insert a new Text Inset"), Noop }, #if 0 { LFUN_INSET_THEOREM, "theorem-insert", "", Noop }, #endif diff --git a/src/box.C b/src/box.C index 6581649728..afaba9c63e 100644 --- a/src/box.C +++ b/src/box.C @@ -30,4 +30,3 @@ ostream & operator<<(ostream & o, Box const & b) return o << "x1,y1: " << b.x1 << "," << b.y1 << " x2,y2: " << b.x2 << "," << b.y2 << std::endl; } - diff --git a/src/commandtags.h b/src/commandtags.h index b9042343b8..5134ccb2b1 100644 --- a/src/commandtags.h +++ b/src/commandtags.h @@ -253,7 +253,6 @@ enum kb_action { LFUN_HELP_OPEN, // 220 // Jug 990627 LFUN_DATE_INSERT, // jdblair 20000131 LFUN_LANGUAGE, // Dekel 20000203 - LFUN_INSET_TEXT, // Jug 20000214 LFUN_INSET_ERT, // Jug 20000218 LFUN_INSET_GRAPHICS, // Lgb 20000226 LFUN_INSET_FOOTNOTE, // Jug 20000307 diff --git a/src/insets/ChangeLog b/src/insets/ChangeLog index e1628deffc..9d4421ac11 100644 --- a/src/insets/ChangeLog +++ b/src/insets/ChangeLog @@ -1,3 +1,7 @@ +2002-03-13 Jean-Marc Lasgouttes + + * insetgraphics.h: remove display() method. + 2002-03-11 Juergen Vigna * insetgraphics.C (draw): hack to fix the redrawing bug. diff --git a/src/insets/insetgraphics.h b/src/insets/insetgraphics.h index 94effb1491..ac446c7ca5 100644 --- a/src/insets/insetgraphics.h +++ b/src/insets/insetgraphics.h @@ -44,8 +44,6 @@ public: /// int width(BufferView *, LyXFont const &) const; /// - bool display() const { return true; } - /// void draw(BufferView *, LyXFont const &, int, float &, bool) const; /// void edit(BufferView *, int, int, unsigned int); diff --git a/src/lyxfunc.C b/src/lyxfunc.C index 0857b261b3..59c5849cc7 100644 --- a/src/lyxfunc.C +++ b/src/lyxfunc.C @@ -568,9 +568,6 @@ FuncStatus LyXFunc::getStatus(kb_action action, // the functions which insert insets Inset::Code code = Inset::NO_CODE; switch (action) { - case LFUN_INSET_TEXT: - code = Inset::TEXT_CODE; - break; case LFUN_INSET_ERT: code = Inset::ERT_CODE; break;