Try to resolve a listener to make sure that something is listening when we
2001-10-13 Bradford Hovinen <hovinen@ximian.com> * bonobo-config-archiver.c (real_sync): Try to resolve a listener to make sure that something is listening when we issue the sync event (disabled for now) (get_listener_oafiid): Implement (disabled for now) 2001-10-12 Bradford Hovinen <hovinen@ximian.com> * capplet-util.c (get_factory_name): Updated factory name to reflect new, expanded roles * Bonobo_Control_Capplet_generic.oaf.in: Create 2001-09-29 Bradford Hovinen <hovinen@ximian.com> * capplet-util.c (create_control_cb): Elimite reference counter -- it's not necessary (create_control_cb): Make this a multi-factory so that we can return the listener when needed (capplet_init): Set up the listener here rather than in get_control_cb; also remove the listener and unref the database here (quit_cb, real_quit_cb): Remove (thank the gods) 2001-10-12 Bradford Hovinen <hovinen@ximian.com> * Makefile.am ($(oaffile)): Make creation of the .oaf file generic 2001-10-12 Bradford Hovinen <hovinen@ximian.com> * capplet-dir.c (capplet_control_launch): Unref the property bag when we are done
This commit is contained in:
parent
99b228af09
commit
4b6d9f7f99
21 changed files with 232 additions and 209 deletions
|
@ -1,20 +0,0 @@
|
|||
<oaf_info>
|
||||
|
||||
<oaf_server iid="OAFIID:Bonobo_Control_Capplet_keyboard_properties_Factory" type="exe" location="REPLACEME_PLIZ">
|
||||
<oaf_attribute name="repo_ids" type="stringv">
|
||||
<item value="IDL:GNOME/ObjectFactory:1.0"/>
|
||||
</oaf_attribute>
|
||||
|
||||
<oaf_attribute name="name" type="string" value="Keyboard properties capplet factory"/>
|
||||
</oaf_server>
|
||||
|
||||
<oaf_server iid="OAFIID:Bonobo_Control_Capplet_keyboard_properties" type="factory"
|
||||
location="OAFIID:Bonobo_Control_Capplet_keyboard_properties_Factory">
|
||||
<oaf_attribute name="repo_ids" type="stringv">
|
||||
<item value="IDL:Bonobo/PropertyControl:1.0"/>
|
||||
<item value="IDL:Bonobo/Unknown:1.0"/>
|
||||
</oaf_attribute>
|
||||
<oaf_attribute name="name" type="string" value="Keyboard properties capplet"/>
|
||||
</oaf_server>
|
||||
|
||||
</oaf_info>
|
|
@ -1,3 +1,7 @@
|
|||
2001-10-12 Bradford Hovinen <hovinen@ximian.com>
|
||||
|
||||
* Makefile.am: Make OAF file creation generic
|
||||
|
||||
2001-09-28 Bradford Hovinen <hovinen@ximian.com>
|
||||
|
||||
* Makefile.am: Remove support for disabling bonobo-conf build
|
||||
|
|
|
@ -17,9 +17,7 @@ defaults_DATA = keyboard-properties.xml
|
|||
|
||||
oafdir = $(datadir)/oaf
|
||||
oaf_DATA = Bonobo_Control_Capplet_keyboard_properties.oaf
|
||||
|
||||
$(oaffile): %.oaf: %.oaf.in
|
||||
sed -e "s#REPLACEME_PLIZ#$(bindir)/$(bin_PROGRAMS)#" < $< > ${oaffile}
|
||||
oaffile = $(oaf_DATA)
|
||||
|
||||
##
|
||||
## You should not need to modify anything below this line
|
||||
|
@ -30,6 +28,9 @@ $(bin_SCRIPTS): $(top_srcdir)/capplets/common/wrapper-script.in
|
|||
sed -e "s#@BINDIR@#$(bindir)#" -e "s#@CAPPLET_NAME@#$(cappletname)-properties#" < $< > $@
|
||||
chmod a+x $@
|
||||
|
||||
$(oaffile): %.oaf: $(top_srcdir)/capplets/common/Bonobo_Control_Capplet_generic.oaf.in
|
||||
sed -e "s#@BINDIR@#$(bindir)#" -e "s#@SHORT_CAPPLET_NAME@#$(cappletname)#" -e "s#@CAPPLET_BINARY_NAME@#$(bin_PROGRAMS)#" < $< > ${oaffile}
|
||||
|
||||
####@###GNOMECC_CAPPLETS_DESKTOP_IN_RULE@
|
||||
$(desktop).in: %.desktop.in: %.desktop.in.in
|
||||
sed -e "s#@DESKTOP_EXEC_LINE@#$(DESKTOP_EXEC_LINE)#" -e "s#Icon=.*#Icon=$(GNOMECC_ICONS_DIR)/${cappletname}-capplet.png#" < $< > ${cappletname}.desktop.in
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue