From: Pavel Sanda Date: Sat, 23 May 2009 09:28:33 +0000 (+0000) Subject: Another camel X-Git-Tag: 2.0.0~6475 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=db0d8a1131b311110d31c41dbcfdd83b1abeb056;p=features.git Another camel git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@29809 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/frontends/qt4/LengthCombo.cpp b/src/frontends/qt4/LengthCombo.cpp index 0ed1d64c4e..a21bc4da36 100644 --- a/src/frontends/qt4/LengthCombo.cpp +++ b/src/frontends/qt4/LengthCombo.cpp @@ -34,7 +34,7 @@ LengthCombo::LengthCombo(QWidget * parent) } connect(this, SIGNAL(activated(int)), - this, SLOT(has_activated(int))); + this, SLOT(hasActivated(int))); } @@ -45,7 +45,7 @@ lyx::Length::UNIT LengthCombo::currentLengthItem() const } -void LengthCombo::has_activated(int) +void LengthCombo::hasActivated(int) { // emit signal selectionChanged(currentLengthItem()); diff --git a/src/frontends/qt4/LengthCombo.h b/src/frontends/qt4/LengthCombo.h index 8d0a6823fc..f47a178ba8 100644 --- a/src/frontends/qt4/LengthCombo.h +++ b/src/frontends/qt4/LengthCombo.h @@ -46,7 +46,7 @@ public: virtual void addUnit(lyx::Length::UNIT unit); protected Q_SLOTS: - virtual void has_activated(int index); + virtual void hasActivated(int index); Q_SIGNALS: /// the current selection has changed void selectionChanged(lyx::Length::UNIT unit);