
commit 22b0b6c0546cca1e794ec50e9f3725240c1d091d Author: Tomas Touceda <chiiph@gentoo.org> Date: Wed May 18 02:34:01 2011 -0300 Fix typo --- src/vidalia/MainWindow.cpp | 4 ++-- src/vidalia/MainWindow.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/vidalia/MainWindow.cpp b/src/vidalia/MainWindow.cpp index cf3e532..674958e 100644 --- a/src/vidalia/MainWindow.cpp +++ b/src/vidalia/MainWindow.cpp @@ -322,7 +322,7 @@ MainWindow::createConnections() connect(_actionMessageLog, SIGNAL(triggered()), this, SLOT(showMessageLogTab())); connect(_actionConfigure, SIGNAL(triggered()), this, SLOT(showConfigDialog())); - connect(_actionBandwidthGraph, SIGNAL(triggered()), this, SLOT(showBandwithTab())); + connect(_actionBandwidthGraph, SIGNAL(triggered()), this, SLOT(showBandwidthTab())); connect(_actionAbout, SIGNAL(triggered()), this, SLOT(showAboutDialog())); connect(_actionVidaliaHelp, SIGNAL(triggered()), this, SLOT(showHelpDialog())); connect(_actionStatus, SIGNAL(triggered()), this, SLOT(showStatusTab())); @@ -1585,7 +1585,7 @@ MainWindow::showMessageLogTab() } void -MainWindow::showBandwithTab() +MainWindow::showBandwidthTab() { addTab(_graph); } diff --git a/src/vidalia/MainWindow.h b/src/vidalia/MainWindow.h index a01f167..a008a08 100644 --- a/src/vidalia/MainWindow.h +++ b/src/vidalia/MainWindow.h @@ -126,7 +126,7 @@ private slots: /** Displays the General Tor Status tab */ void showStatusTab(); /** Displays the Bandwidth graph tab */ - void showBandwithTab(); + void showBandwidthTab(); /** Displays the Network map tab */ void showNetViewerTab(); /** Creates and displays Vidalia's About dialog. */