mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-06 00:10:59 +00:00
*** empty log message ***
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2392 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
e297059b88
commit
28f47d9c7e
@ -1,5 +1,7 @@
|
|||||||
2001-07-30 Lars Gullik Bjønnes <larsbj@birdstep.com>
|
2001-07-30 Lars Gullik Bjønnes <larsbj@birdstep.com>
|
||||||
|
|
||||||
|
* insetert.C: change back to "ERT"
|
||||||
|
|
||||||
* insetfloat.C: handliign of RMB on label added.
|
* insetfloat.C: handliign of RMB on label added.
|
||||||
|
|
||||||
2001-07-30 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
|
2001-07-30 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
|
||||||
|
@ -135,7 +135,7 @@ void InsetERT::insetButtonRelease(BufferView * bv,
|
|||||||
if ((x >= 0) && (x < button_length) &&
|
if ((x >= 0) && (x < button_length) &&
|
||||||
(y >= button_top_y) && (y <= button_bottom_y)) {
|
(y >= button_top_y) && (y <= button_bottom_y)) {
|
||||||
if (collapsed_) {
|
if (collapsed_) {
|
||||||
setLabel(_("666"));
|
setLabel(_("ERT"));
|
||||||
} else {
|
} else {
|
||||||
setLabel(get_new_label());
|
setLabel(get_new_label());
|
||||||
}
|
}
|
||||||
@ -236,7 +236,7 @@ string const InsetERT::get_new_label() const
|
|||||||
la += "...";
|
la += "...";
|
||||||
}
|
}
|
||||||
if (la.empty()) {
|
if (la.empty()) {
|
||||||
la = _("666");
|
la = _("ERT");
|
||||||
}
|
}
|
||||||
return la;
|
return la;
|
||||||
}
|
}
|
||||||
@ -247,7 +247,7 @@ void InsetERT::setButtonLabel()
|
|||||||
if (collapsed_) {
|
if (collapsed_) {
|
||||||
setLabel(get_new_label());
|
setLabel(get_new_label());
|
||||||
} else {
|
} else {
|
||||||
setLabel(_("666"));
|
setLabel(_("ERT"));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -935,6 +935,7 @@ int LyXTabular::right_column_of_cell(int cell) const
|
|||||||
|
|
||||||
|
|
||||||
// Perfect case for a template... (Lgb)
|
// Perfect case for a template... (Lgb)
|
||||||
|
// or perhaps not...
|
||||||
#if 1
|
#if 1
|
||||||
template<class T>
|
template<class T>
|
||||||
string const write_attribute(string const & name, T const & t)
|
string const write_attribute(string const & name, T const & t)
|
||||||
|
Loading…
Reference in New Issue
Block a user