diff options
author | Tomaz Canabrava <tomaz.canabrava@gmail.com> | 2015-05-17 18:35:30 -0300 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-05-17 15:00:45 -0700 |
commit | c2f77353eea26462311964f33515f7f91136abe9 (patch) | |
tree | 0d65d5ad29df0439dc863a39fd8162a157540db7 /qt-ui/maintab.cpp | |
parent | b59084dc1f273f6af04c503b4e73081757086287 (diff) | |
download | subsurface-c2f77353eea26462311964f33515f7f91136abe9.tar.gz |
Better name for the disable/enable geolocation edit
'enable' and 'disable' is too generic, and we are only
blocking the geolocation edit.
Signed-off-by: Tomaz Canabrava <tomaz.canabrava@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/maintab.cpp')
-rw-r--r-- | qt-ui/maintab.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qt-ui/maintab.cpp b/qt-ui/maintab.cpp index 739cbdf77..dff005774 100644 --- a/qt-ui/maintab.cpp +++ b/qt-ui/maintab.cpp @@ -200,12 +200,12 @@ MainTab::~MainTab() } } -void MainTab::enable() +void MainTab::enableGeoLoockupEdition() { setEnabled(true); } -void MainTab::disable() +void MainTab::disableGeoLoockupEdition() { setDisabled(true); } |