diff options
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | README.win32 | 29 | ||||
-rw-r--r-- | glib/glibmm/threadpool.cc | 4 |
3 files changed, 10 insertions, 30 deletions
@@ -1,3 +1,10 @@ +2003-09-27 Cedric Gustin <cedric.gustin@swing.be> + + * glib/glibmm/threadpool.cc: Removed + _GTKMMPROC_SIGNAL_H_AND_CC(#ifndef G_OS_WIN32) restrictions. These + functions are now implemented in the latest (2.2.4) GTK+ on win32. + * README.win32 : Updated list of unsupported functions. + 2003-08-20 Frank Naumann <fnaumann@freemint.de> * glib/src/thread.hg, diff --git a/README.win32 b/README.win32 index 45575151..891ca803 100644 --- a/README.win32 +++ b/README.win32 @@ -93,37 +93,14 @@ win32. These are * Implemented in the C library but not DLL exported -Glibmm : - ThreadPool::get_num_unused_threads - ThreadPool::stop_unused_threads - Atkmm : + Action::get_localized_name Component::get_layer Component::get_mdi_zorder - -Gdkmm : - Screen::list_visuals - Screen::make_display_name - Screen::get_width_mm - Screen::get_height_mm - Screen::broadcast_client_message - Display::get_drag_protocol - DisplayManager::get_type (DisplayManager is currently disabled) - -Gtkmm : - Clipboard::get_type (Clipboard is currently disabled) - TreeRowReference::get_type (TreeRowReference is currently disabled) - Widget::get_clipboard (because Clipboard is currently disabled) - Window::get_skip_taskbar_hint - -* Not Implemented in the C library - -Atkmm : - Action::get_localized_name Object::add_relationship Object::remove_relationship - Object::active_descendant_changed (signal) - Text::text_attributes_changed + +* Not Implemented in the C library Gtkmm : Gtk::Plug (not available on win32) diff --git a/glib/glibmm/threadpool.cc b/glib/glibmm/threadpool.cc index 0fcd727a..6a1a2f9f 100644 --- a/glib/glibmm/threadpool.cc +++ b/glib/glibmm/threadpool.cc @@ -229,8 +229,6 @@ int ThreadPool::get_max_unused_threads() return g_thread_pool_get_max_unused_threads(); } -#ifndef GLIBMM_WIN32 - // static unsigned int ThreadPool::get_num_unused_threads() { @@ -243,7 +241,5 @@ void ThreadPool::stop_unused_threads() g_thread_pool_stop_unused_threads(); } -#endif /* GLIBMM_WIN32 */ - } // namespace Glib |