summaryrefslogtreecommitdiffstats
path: root/src/JackSettingsDialog.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/JackSettingsDialog.hpp')
-rw-r--r--src/JackSettingsDialog.hpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/JackSettingsDialog.hpp b/src/JackSettingsDialog.hpp
index 1acb191..b419d89 100644
--- a/src/JackSettingsDialog.hpp
+++ b/src/JackSettingsDialog.hpp
@@ -45,7 +45,7 @@ public:
private:
void on_cancel() { hide(); }
- string current_jack_command() {
+ std::string current_jack_command() {
std::string result;
const char* const home = getenv("HOME");
@@ -65,7 +65,7 @@ private:
hide();
const char* const home = getenv("HOME");
if (home) {
- string jackdrc_path(home);
+ std::string jackdrc_path(home);
jackdrc_path += "/.jackdrc";
std::ofstream jackdrc(jackdrc_path.c_str());
@@ -74,7 +74,6 @@ private:
}
}
-
Gtk::Entry* _command_entry;
Gtk::Button* _cancel_but;
Gtk::Button* _ok_but;