summaryrefslogtreecommitdiff
path: root/glib/src/spawn.hg
diff options
context:
space:
mode:
authorMurray Cumming <murrayc@usa.net>2004-02-10 14:26:07 +0000
committerMurray Cumming <murrayc@src.gnome.org>2004-02-10 14:26:07 +0000
commitfc8dea9ce4bcf8963ccf0022c2493143406e3fc9 (patch)
tree919c768fb9ed0f6c0f6c27b2acd687bc0bbfe387 /glib/src/spawn.hg
parent81738d5465fee36af441e6a0cbe5ffcd1b874f8b (diff)
downloadglibmm-fc8dea9ce4bcf8963ccf0022c2493143406e3fc9.tar.gz
glibmm now uses libsigc++ 2 instead of libsigc++ 1.2. See bug #125061 for
2004-02-10 Murray Cumming <murrayc@usa.net> * glibmm now uses libsigc++ 2 instead of libsigc++ 1.2. See bug #125061 for more details. We must update CHANGES later.
Diffstat (limited to 'glib/src/spawn.hg')
-rw-r--r--glib/src/spawn.hg12
1 files changed, 6 insertions, 6 deletions
diff --git a/glib/src/spawn.hg b/glib/src/spawn.hg
index 79b93c20..c2a403bb 100644
--- a/glib/src/spawn.hg
+++ b/glib/src/spawn.hg
@@ -47,7 +47,7 @@ void spawn_async_with_pipes(const std::string& working_directory,
const Glib::ArrayHandle<std::string>& argv,
const Glib::ArrayHandle<std::string>& envp,
SpawnFlags flags = SpawnFlags(0),
- const SigC::Slot0<void>& child_setup = SigC::Slot0<void>(),
+ const sigc::slot<void>& child_setup = sigc::slot<void>(),
int* child_pid = 0,
int* standard_input = 0,
int* standard_output = 0,
@@ -56,7 +56,7 @@ void spawn_async_with_pipes(const std::string& working_directory,
void spawn_async_with_pipes(const std::string& working_directory,
const Glib::ArrayHandle<std::string>& argv,
SpawnFlags flags = SpawnFlags(0),
- const SigC::Slot0<void>& child_setup = SigC::Slot0<void>(),
+ const sigc::slot<void>& child_setup = sigc::slot<void>(),
int* child_pid = 0,
int* standard_input = 0,
int* standard_output = 0,
@@ -66,20 +66,20 @@ void spawn_async(const std::string& working_directory,
const Glib::ArrayHandle<std::string>& argv,
const Glib::ArrayHandle<std::string>& envp,
SpawnFlags flags = SpawnFlags(0),
- const SigC::Slot0<void>& child_setup = SigC::Slot0<void>(),
+ const sigc::slot<void>& child_setup = sigc::slot<void>(),
int* child_pid = 0);
void spawn_async(const std::string& working_directory,
const Glib::ArrayHandle<std::string>& argv,
SpawnFlags flags = SpawnFlags(0),
- const SigC::Slot0<void>& child_setup = SigC::Slot0<void>(),
+ const sigc::slot<void>& child_setup = sigc::slot<void>(),
int* child_pid = 0);
void spawn_sync(const std::string& working_directory,
const Glib::ArrayHandle<std::string>& argv,
const Glib::ArrayHandle<std::string>& envp,
SpawnFlags flags = SpawnFlags(0),
- const SigC::Slot0<void>& child_setup = SigC::Slot0<void>(),
+ const sigc::slot<void>& child_setup = sigc::slot<void>(),
std::string* standard_output = 0,
std::string* standard_error = 0,
int* exit_status = 0);
@@ -87,7 +87,7 @@ void spawn_sync(const std::string& working_directory,
void spawn_sync(const std::string& working_directory,
const Glib::ArrayHandle<std::string>& argv,
SpawnFlags flags = SpawnFlags(0),
- const SigC::Slot0<void>& child_setup = SigC::Slot0<void>(),
+ const sigc::slot<void>& child_setup = sigc::slot<void>(),
std::string* standard_output = 0,
std::string* standard_error = 0,
int* exit_status = 0);