summaryrefslogtreecommitdiffstats
path: root/src/gui/Configuration.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/Configuration.cpp')
-rw-r--r--src/gui/Configuration.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/gui/Configuration.cpp b/src/gui/Configuration.cpp
index de4ed424..174ffbe5 100644
--- a/src/gui/Configuration.cpp
+++ b/src/gui/Configuration.cpp
@@ -37,7 +37,6 @@ namespace GUI {
using namespace Ingen::Client;
-
Configuration::Configuration()
// Colours from the Tango palette with modified V and alpha
: _name_style(HUMAN)
@@ -49,12 +48,10 @@ Configuration::Configuration()
{
}
-
Configuration::~Configuration()
{
}
-
/** Loads settings from the rc file. Passing no parameter will load from
* the default location.
*/
@@ -64,7 +61,6 @@ Configuration::load_settings(string filename)
/* ... */
}
-
/** Saves settings to rc file. Passing no parameter will save to the
* default location.
*/
@@ -74,7 +70,6 @@ Configuration::save_settings(string filename)
/* ... */
}
-
/** Applies the current loaded settings to whichever parts of the app
* need updating.
*/
@@ -84,7 +79,6 @@ Configuration::apply_settings()
/* ... */
}
-
uint32_t
Configuration::get_port_color(const PortModel* p)
{
@@ -104,6 +98,5 @@ Configuration::get_port_color(const PortModel* p)
return 0x666666FF;
}
-
} // namespace GUI
} // namespace Ingen