diff options
author | Szabolcs Ban <bansz@src.gnome.org> | 2002-03-14 14:06:20 +0000 |
---|---|---|
committer | Szabolcs Ban <bansz@src.gnome.org> | 2002-03-14 14:06:20 +0000 |
commit | 9015441a9f43460e510ffdf981fa589b6369603d (patch) | |
tree | 389678aad5b4c665562169c6290ba49c101932f6 | |
parent | 1cafd16642f2e5f998d53ee3dcc16da5548c65bf (diff) |
string constant fix
-rw-r--r-- | gkb-new/ChangeLog | 5 | ||||
-rw-r--r-- | gkb-new/gkb.c | 3 |
2 files changed, 6 insertions, 2 deletions
diff --git a/gkb-new/ChangeLog b/gkb-new/ChangeLog index c8bfc97c4..81096d74a 100644 --- a/gkb-new/ChangeLog +++ b/gkb-new/ChangeLog @@ -1,3 +1,8 @@ +2002-03-14 Szabolcs Ban <shooby@gnome.hu> + + * fix line break in string constant from previous patch, thank you, + Laca + 2002-03-13 Parag Kabra <parag.kabra@wipro.com> * gkb.h, gkb.c, prop.c, prop-list.c and prop-map.c: added accessbility related code. diff --git a/gkb-new/gkb.c b/gkb-new/gkb.c index 7b99a1b92..628d04de4 100644 --- a/gkb-new/gkb.c +++ b/gkb-new/gkb.c @@ -111,8 +111,7 @@ gkb_draw (GKB * gkb) } gtk_tooltips_set_tip (gkb->tooltips, gkb->applet, gkb->keymap->name, NULL); - add_atk_namedesc(gkb->applet, gkb->keymap->name, _("Press the hotkey to switch -between layouts. The hotkey can be set through Properties dialog")); + add_atk_namedesc(gkb->applet, gkb->keymap->name, _("Press the hotkey to switch between layouts. The hotkey can be set through Properties dialog")); } |