From 08c9cde4726f94698ea938d464cd1de95b7be587 Mon Sep 17 00:00:00 2001 From: Bjørn Lindeijer Date: Sun, 15 Feb 2009 21:55:32 +0100 Subject: Fixes some variable names to conform to naming convention Please do remember that member variables are prefixes with 'm', so that they are easily distinguishable. --- src/gui/table.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/gui/table.cpp') diff --git a/src/gui/table.cpp b/src/gui/table.cpp index 76877c6b..1fd088ce 100644 --- a/src/gui/table.cpp +++ b/src/gui/table.cpp @@ -238,8 +238,8 @@ void GuiTable::setSelectedColumn(int selected) void GuiTable::uninstallActionListeners(void) { - delete_all(action_listeners); - action_listeners.clear(); + delete_all(mActionListeners); + mActionListeners.clear(); } void GuiTable::installActionListeners() @@ -254,7 +254,7 @@ void GuiTable::installActionListeners() for (int column = 0; column < columns; ++column) { gcn::Widget *widget = mModel->getElementAt(row, column); - action_listeners.push_back(new GuiTableActionListener(this, widget, + mActionListeners.push_back(new GuiTableActionListener(this, widget, row, column)); } -- cgit v1.2.3-70-g09d2