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:
John Levon 2002-06-02 20:58:48 +00:00
parent 9ed3420ea1
commit a7eb04e559
2 changed files with 6 additions and 2 deletions

View File

@ -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>
* GUIRunTime.C:

View File

@ -120,9 +120,9 @@ Tooltips::Tooltips()
static bool first = true;
if (first) {
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));
}