diff options
author | Ryan Lortie <desrt@desrt.ca> | 2013-05-09 14:15:51 -0400 |
---|---|---|
committer | Jasper St. Pierre <jstpierre@mecheye.net> | 2013-05-13 16:33:42 -0400 |
commit | 6c49cd0ea69b9d46b790608ed5ae058e0d9a00ea (patch) | |
tree | 2ba3a608d78f2c3babf48827abe725e567d0604f /gtk/Makefile.am | |
parent | 58481ffabfa27928650b2262173f46b289d5cfa1 (diff) | |
download | gtk+-6c49cd0ea69b9d46b790608ed5ae058e0d9a00ea.tar.gz |
action stuff: stop abusing GLib's namespace
Rename our internal GActionMuxer, GActionObserver and GActionObservable
classes and interfaces to have names in our own namespace.
These classes were originally intended for GIO but turned out to be too
special-purpose to be useful there, so we never made them public API but
have just been copying them around (without bothering to properly rename
them). Now that other people will be copying them out of Gtk, it's even
more important to prevent this namespace abuse from spreading further.
Diffstat (limited to 'gtk/Makefile.am')
-rw-r--r-- | gtk/Makefile.am | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gtk/Makefile.am b/gtk/Makefile.am index 21ac74c3d3..7edca5a05b 100644 --- a/gtk/Makefile.am +++ b/gtk/Makefile.am @@ -402,9 +402,9 @@ gtk_private_type_h_sources = \ # GTK+ header files that don't get installed gtk_private_h_sources = \ - gactionmuxer.h \ - gactionobserver.h \ - gactionobservable.h \ + gtkactionmuxer.h \ + gtkactionobserver.h \ + gtkactionobservable.h \ gtkapplicationprivate.h \ gtkaccelgroupprivate.h \ gtkaccelmapprivate.h \ @@ -584,9 +584,9 @@ deprecated_c_sources = \ gtk_base_c_sources = \ $(deprecated_c_sources) \ - gactionmuxer.c \ - gactionobserver.c \ - gactionobservable.c \ + gtkactionmuxer.c \ + gtkactionobserver.c \ + gtkactionobservable.c \ gtkactionable.c \ gtkquery.c \ gtksearchentry.c \ |