[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[vidalia-svn] r4009: Be more consistent with my camel-casing. (vidalia/trunk/src/vidalia)
Author: edmanm
Date: 2009-08-05 14:08:44 -0400 (Wed, 05 Aug 2009)
New Revision: 4009
Modified:
vidalia/trunk/src/vidalia/MainWindow.cpp
vidalia/trunk/src/vidalia/MainWindow.h
Log:
Be more consistent with my camel-casing.
Modified: vidalia/trunk/src/vidalia/MainWindow.cpp
===================================================================
--- vidalia/trunk/src/vidalia/MainWindow.cpp 2009-08-05 02:03:31 UTC (rev 4008)
+++ vidalia/trunk/src/vidalia/MainWindow.cpp 2009-08-05 18:08:44 UTC (rev 4009)
@@ -178,7 +178,7 @@
/* Also check for updates in the foreground when the user clicks the
* "Check Now" button in the config dialog. */
connect(_configDialog, SIGNAL(checkForUpdates()),
- this, SLOT(checkForUpdatesWithUI()));
+ this, SLOT(checkForUpdatesWithUi()));
/* The rest of these slots are called as the update process executes. */
connect(&_updateProcess, SIGNAL(downloadProgress(QString,int,int)),
@@ -1576,7 +1576,7 @@
VMessageBox::No|VMessageBox::Escape);
if (ret == VMessageBox::Yes)
- checkForUpdatesWithUI();
+ checkForUpdatesWithUi();
#endif
alreadyWarned = true;
}
@@ -1802,7 +1802,7 @@
/** Called when the user clicks the 'Check Now' button in the General
* settings page. */
void
-MainWindow::checkForUpdatesWithUI()
+MainWindow::checkForUpdatesWithUi()
{
checkForUpdates(true);
}
Modified: vidalia/trunk/src/vidalia/MainWindow.h
===================================================================
--- vidalia/trunk/src/vidalia/MainWindow.h 2009-08-05 02:03:31 UTC (rev 4008)
+++ vidalia/trunk/src/vidalia/MainWindow.h 2009-08-05 18:08:44 UTC (rev 4009)
@@ -131,7 +131,7 @@
#if defined(USE_AUTOUPDATE)
/** Called when the user clicks the 'Check Now' button in the General
* settings page. */
- void checkForUpdatesWithUI();
+ void checkForUpdatesWithUi();
/** Called when the update interval timer expires, notifying Vidalia that
* we should check for updates again. */
void checkForUpdates(bool showProgress = false);