diff options
author | David Robillard <d@drobilla.net> | 2006-07-19 08:59:30 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2006-07-19 08:59:30 +0000 |
commit | 466f306c1154b7aeccff301b8597872b82e3c806 (patch) | |
tree | 1b8d9d6c4a778f0f5cf36522295a66d3493e1adc /src/progs/ingenuity/ConnectWindow.cpp | |
parent | 2dbd0cd81dff72aea42344188d20f7d7f6d20e1a (diff) | |
download | ingen-466f306c1154b7aeccff301b8597872b82e3c806.tar.gz ingen-466f306c1154b7aeccff301b8597872b82e3c806.tar.bz2 ingen-466f306c1154b7aeccff301b8597872b82e3c806.zip |
Changed namespace names, removed almost all references to "Om"
git-svn-id: http://svn.drobilla.net/lad/ingen@97 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/progs/ingenuity/ConnectWindow.cpp')
-rw-r--r-- | src/progs/ingenuity/ConnectWindow.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/progs/ingenuity/ConnectWindow.cpp b/src/progs/ingenuity/ConnectWindow.cpp index f60f39fa..4cfb7a9c 100644 --- a/src/progs/ingenuity/ConnectWindow.cpp +++ b/src/progs/ingenuity/ConnectWindow.cpp @@ -27,7 +27,7 @@ #include "PatchController.h" #include "PatchModel.h" -namespace OmGtk { +namespace Ingenuity { ConnectWindow::ConnectWindow(BaseObjectType* cobject, const Glib::RefPtr<Gnome::Glade::Xml>& xml) @@ -56,7 +56,7 @@ ConnectWindow::ConnectWindow(BaseObjectType* cobject, const Glib::RefPtr<Gnome:: void -ConnectWindow::start(CountedPtr<Om::Shared::ClientInterface> client) +ConnectWindow::start(CountedPtr<Ingen::Shared::ClientInterface> client) { _client = client; resize(100, 100); @@ -104,7 +104,7 @@ void ConnectWindow::quit() { if (Controller::instance().is_attached()) { - Gtk::MessageDialog d(*this, "This will exit OmGtk, but the engine will " + Gtk::MessageDialog d(*this, "This will exit Ingenuity, but the engine will " "remain running (if it is remote).\n\nAre you sure you want to quit?", true, Gtk::MESSAGE_WARNING, Gtk::BUTTONS_NONE, true); d.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL); @@ -257,4 +257,4 @@ ConnectWindow::gtk_callback() } -} // namespace OmGtk +} // namespace Ingenuity |