mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-10 20:04:46 +00:00
Fix boost signal patch from Michael
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4318 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
9ed3420ea1
commit
a7eb04e559
@ -1,3 +1,7 @@
|
|||||||
|
2002-06-02 Michael A. Koziarski <michael@koziarski.com>
|
||||||
|
|
||||||
|
* Tooltips.C: fix some sigc++ -> boost errors.
|
||||||
|
|
||||||
2002-06-02 John Levon <moz@compsoc.man.ac.uk>
|
2002-06-02 John Levon <moz@compsoc.man.ac.uk>
|
||||||
|
|
||||||
* GUIRunTime.C:
|
* GUIRunTime.C:
|
||||||
|
@ -120,9 +120,9 @@ Tooltips::Tooltips()
|
|||||||
static bool first = true;
|
static bool first = true;
|
||||||
if (first) {
|
if (first) {
|
||||||
first = false;
|
first = false;
|
||||||
Dialogs::toggleTooltips.connect(slot(&Tooltips::toggleEnabled));
|
Dialogs::toggleTooltips.connect(boost::bind(&Tooltips::toggleEnabled));
|
||||||
}
|
}
|
||||||
toggled.connect(slot(this, &Tooltips::set));
|
toggled.connect(boost::bind(&Tooltips::set, this));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user