diff options
author | Murray Cumming <murrayc@murrayc.com> | 2006-04-12 08:12:12 +0000 |
---|---|---|
committer | Murray Cumming <murrayc@src.gnome.org> | 2006-04-12 08:12:12 +0000 |
commit | c73ae57ef977a3827c1de99e1d59f9a90eef5672 (patch) | |
tree | 0157be76275930bc72d44ac8a6511573e83d5251 /examples/thread | |
parent | 01f2a0d33758ada62ec5a29fa382880963837e11 (diff) | |
download | glibmm-c73ae57ef977a3827c1de99e1d59f9a90eef5672.tar.gz |
Mark private functions as static, to stop them being exported in the API,
2006-04-12 Murray Cumming <murrayc@murrayc.com>
* glib/glibmm/main.cc:
* glib/glibmm/objectbase.cc:
* glib/glibmm/property.cc:
* glib/glibmm/ustring.cc:
* glib/glibmm/value_custom.cc:
* glib/src/spawn.ccg: Mark private functions as
static, to stop them being exported in the API, to reduce the
library code size slightly.
* tools/m4/signal.m4: Make generated callback functions static, for
the same reasons.
Diffstat (limited to 'examples/thread')
-rw-r--r-- | examples/thread/dispatcher.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/thread/dispatcher.cc b/examples/thread/dispatcher.cc index 44778b4b..ca74d05d 100644 --- a/examples/thread/dispatcher.cc +++ b/examples/thread/dispatcher.cc @@ -170,7 +170,7 @@ void Application::on_progress_finished(ThreadProgress* thread_progress) thread_progress->join(); std::cout << "Thread " << thread_progress->id() - << ": finished." << std::endl; + << ": finished." << std::endl; } if(progress_list_.empty()) |