fix typo.

Sun Mar 17 16:30:48 2002  Jonathan Blandford  <jrb@redhat.com>

	* capplets/keybindings/gnome-keybinding-properties.c
	(create_dialog): fix typo.

I'm never able to import new code w/o screwing something up.  Sigh...
This commit is contained in:
Jonathan Blandford 2002-03-17 21:39:37 +00:00 committed by Jonathan Blandford
parent ac9331cf2b
commit bca93ec2d9
2 changed files with 6 additions and 5 deletions

View file

@ -1,3 +1,8 @@
Sun Mar 17 16:30:48 2002 Jonathan Blandford <jrb@redhat.com>
* capplets/keybindings/gnome-keybinding-properties.c
(create_dialog): fix typo.
2002-03-17 Jonathan Blandford <jrb@redhat.com>
* Makefile.am: Add new Makefiles

View file

@ -12,10 +12,6 @@
#define LABEL_DATA "gnome-keybinding-properties-label"
/* FIXME: We currnetly leak the KeyEntry structures in the Model every time it
* changes
*/
enum
{
DESCRIPTION_COLUMN,
@ -42,7 +38,7 @@ create_dialog (void)
dialog = glade_xml_new ("gnome-keybinding-properties.glade", "gnome-keybinding-dialog", NULL);
if (dialog == NULL)
dialog = glade_xml_new (GNOMECC_DATA_DIR "/interfaces/gnome-mouse-properties.glade", "gnome-keybinding-dialog", NULL);
dialog = glade_xml_new (GNOMECC_DATA_DIR "/interfaces/gnome-keybinding-properties.glade", "gnome-keybinding-dialog", NULL);
return dialog;
}