From 0fafccb7ed7d64e7f67bd51e5ccd6f279fde80d5 Mon Sep 17 00:00:00 2001 From: Vincent van Ravesteijn Date: Sat, 24 Oct 2009 17:04:09 +0000 Subject: [PATCH] Change to camelbumpstyle. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@31713 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/frontends/qt4/GuiCompare.cpp | 20 ++++++++++---------- src/frontends/qt4/GuiCompare.h | 8 ++++---- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/src/frontends/qt4/GuiCompare.cpp b/src/frontends/qt4/GuiCompare.cpp index aa376c19b6..d631f2e8c3 100644 --- a/src/frontends/qt4/GuiCompare.cpp +++ b/src/frontends/qt4/GuiCompare.cpp @@ -48,17 +48,17 @@ GuiCompare::GuiCompare(GuiView & lv) connect(okPB, SIGNAL(clicked()), this, SLOT(slotOK())); connect(closePB, SIGNAL(clicked()), this, SLOT(slotCancel())); - connect(newFilePB, SIGNAL(clicked()), this, SLOT(select_newfile())); - connect(oldFilePB, SIGNAL(clicked()), this, SLOT(select_oldfile())); + connect(newFilePB, SIGNAL(clicked()), this, SLOT(selectNewFile())); + connect(oldFilePB, SIGNAL(clicked()), this, SLOT(selectOldFile())); connect(newFileCB, SIGNAL(currentIndexChanged(int)), - this, SLOT(change_adaptor())); + this, SLOT(changeAdaptor())); connect(newFileCB, SIGNAL(editTextChanged(const QString &)), - this, SLOT(change_adaptor())); + this, SLOT(changeAdaptor())); connect(oldFileCB, SIGNAL(currentIndexChanged(int)), - this, SLOT(change_adaptor())); + this, SLOT(changeAdaptor())); connect(oldFileCB, SIGNAL(editTextChanged(const QString &)), - this, SLOT(change_adaptor())); + this, SLOT(changeAdaptor())); newSettingsRB->setChecked(true); @@ -79,7 +79,7 @@ void GuiCompare::closeEvent(QCloseEvent *) } -void GuiCompare::change_adaptor() +void GuiCompare::changeAdaptor() { changed(); } @@ -124,7 +124,7 @@ void GuiCompare::updateContents() } -void GuiCompare::select_newfile() +void GuiCompare::selectNewFile() { QString name = browse(newFileCB->currentText()); if (!name.isEmpty()) @@ -133,7 +133,7 @@ void GuiCompare::select_newfile() } -void GuiCompare::select_oldfile() +void GuiCompare::selectOldFile() { QString name = browse(oldFileCB->currentText()); if (!name.isEmpty()) @@ -205,7 +205,7 @@ void GuiCompare::nextIt(int val) } -void GuiCompare::progress_max(int max) const +void GuiCompare::progressMax(int max) const { progressBar->setMaximum(max); } diff --git a/src/frontends/qt4/GuiCompare.h b/src/frontends/qt4/GuiCompare.h index 5ec8a18dad..f02ee4bf23 100644 --- a/src/frontends/qt4/GuiCompare.h +++ b/src/frontends/qt4/GuiCompare.h @@ -37,18 +37,18 @@ private Q_SLOTS: /// void slotCancel(); /// - void change_adaptor(); + void changeAdaptor(); /// - void select_newfile(); + void selectNewFile(); /// - void select_oldfile(); + void selectOldFile(); /// void finished(bool aborted); /// void nextIt(int); /// - void progress_max(int) const; + void progressMax(int) const; private: /// -- 2.39.2