From 034ee74aee88e02fc96c2fe79a83ba3445e99d8a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20E=2E=20Narv=C3=A1ez?= Date: Fri, 2 Sep 2011 22:29:08 -0500 Subject: Change webTab Variable Name to tabToStop Change the name of the variable in webStop slot to avoid name collision with the webTab method in the same MainView class. REVIEW: 102521 --- src/mainview.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/mainview.cpp') diff --git a/src/mainview.cpp b/src/mainview.cpp index ef4cfa73..9869aafd 100644 --- a/src/mainview.cpp +++ b/src/mainview.cpp @@ -207,8 +207,8 @@ void MainView::webReload() void MainView::webStop() { - WebTab *webTab = currentWebTab(); - QAction *action = webTab->view()->page()->action(QWebPage::Stop); + WebTab *tabToStop = currentWebTab(); + QAction *action = tabToStop->view()->page()->action(QWebPage::Stop); action->trigger(); } -- cgit v1.2.1