From 3bc5a948c4c65762fb3f6f4602b400cc547e35d3 Mon Sep 17 00:00:00 2001 From: Thomas Fischer <thomas.fischer@ufz.de> Date: Fri, 22 Feb 2013 16:12:33 +0100 Subject: [PATCH] Added namespace qualifier before readColorLookupTable(). --- Gui/VtkVis/VtkStationSource.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Gui/VtkVis/VtkStationSource.h b/Gui/VtkVis/VtkStationSource.h index bbe7031c451..99d293a815c 100644 --- a/Gui/VtkVis/VtkStationSource.h +++ b/Gui/VtkVis/VtkStationSource.h @@ -36,16 +36,16 @@ public: /// Returns the colour lookup table generated for boreholes. /// This method should only be called after the colour lookup table has actually been build (via RequestData() or setColorLookupTable()). - const std::map<std::string, GeoLib::Color*>& getColorLookupTable() const + const std::map<std::string, GeoLib::Color*>& getColorLookupTable() const { return _colorLookupTable; } /// Returns the type of observation site represented in this source object GeoLib::Station::StationType getType() const { return static_cast<GeoLib::Station*>((*_stations)[0])->type(); }; - + /// Sets a predefined color lookup table for the colouring of borehole stratigraphies - int setColorLookupTable(const std::string &filename) - { return readColorLookupTable(_colorLookupTable, filename); } + int setColorLookupTable(const std::string &filename) + { return GeoLib::readColorLookupTable(_colorLookupTable, filename); } /// Sets the stations as a vector void setStations(const std::vector<GeoLib::Point*>* stations) { _stations = stations; } -- GitLab