diff options
author | David E. Narváez <david.narvaez@computer.org> | 2011-09-02 22:29:08 -0500 |
---|---|---|
committer | David E. Narváez <david.narvaez@computer.org> | 2011-09-02 22:29:08 -0500 |
commit | 034ee74aee88e02fc96c2fe79a83ba3445e99d8a (patch) | |
tree | f089bd579e755a0cf6772bade4b625cc1e7db1aa /src/mainview.cpp | |
parent | Unify reloading methods (diff) | |
download | rekonq-034ee74aee88e02fc96c2fe79a83ba3445e99d8a.tar.xz |
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
Diffstat (limited to 'src/mainview.cpp')
-rw-r--r-- | src/mainview.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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(); } |