diff options
author | David Robillard <d@drobilla.net> | 2015-04-04 01:40:40 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2015-04-04 01:40:40 +0000 |
commit | eea6bae4ddde37cda9088b133cc495df9f6d24fd (patch) | |
tree | 4fed84720f7afcc632feb04f9f549e122aef2db7 /src | |
parent | 3353177415d0c5c37573f030b101066158d80323 (diff) | |
download | ingen-eea6bae4ddde37cda9088b133cc495df9f6d24fd.tar.gz ingen-eea6bae4ddde37cda9088b133cc495df9f6d24fd.tar.bz2 ingen-eea6bae4ddde37cda9088b133cc495df9f6d24fd.zip |
Fix whitespace.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5654 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src')
-rw-r--r-- | src/gui/ConnectWindow.cpp | 10 | ||||
-rw-r--r-- | src/server/DirectDriver.hpp | 2 |
2 files changed, 6 insertions, 6 deletions
diff --git a/src/gui/ConnectWindow.cpp b/src/gui/ConnectWindow.cpp index e7c6b238..6555ce35 100644 --- a/src/gui/ConnectWindow.cpp +++ b/src/gui/ConnectWindow.cpp @@ -80,7 +80,7 @@ ConnectWindow::error(const std::string& msg) present(); set_connecting_widget_states(); } - + if (_progress_label) { _progress_label->set_text(msg); } @@ -223,7 +223,7 @@ ConnectWindow::connect(bool existing) } else if (_mode == Mode::LAUNCH_REMOTE) { const std::string port = std::to_string(_port_spinbutton->get_value_as_int()); const char* cmd[] = { "ingen", "-e", "-E", port.c_str(), NULL }; - + if (!Raul::Process::launch(cmd)) { error("Failed to launch engine process"); return; @@ -348,7 +348,7 @@ ConnectWindow::load_widgets() _port_spinbutton->set_increments(1, 100); _port_spinbutton->set_value( _app->world()->conf().option("engine-port").get<int32_t>()); - + _progress_bar->set_pulse_step(0.01); _widgets_loaded = true; @@ -405,8 +405,8 @@ ConnectWindow::next_stage() "Loading plugins...", "Connected" }; - - + + ++_connect_stage; if (_widgets_loaded) { _progress_label->set_text(labels[_connect_stage]); diff --git a/src/server/DirectDriver.hpp b/src/server/DirectDriver.hpp index 9bbfe14e..51f40f99 100644 --- a/src/server/DirectDriver.hpp +++ b/src/server/DirectDriver.hpp @@ -74,7 +74,7 @@ public: virtual void unregister_port(EnginePort& port) {} virtual SampleCount block_length() const { return _block_length; } - + virtual size_t seq_size() const { return _seq_size; } virtual SampleCount sample_rate() const { return _sample_rate; } |