diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2005-05-02 03:48:05 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2005-05-02 03:48:05 +0800 |
commit | e7d3de6ca1957c42c780d07473e76898a573c796 (patch) | |
tree | da133ac96ee813c69357578aec844e6bf1fdc01f /lib | |
parent | 165179754e9c3a75b1c5405dd14dc6ea6939dca3 (diff) | |
download | gsoc2013-epiphany-e7d3de6ca1957c42c780d07473e76898a573c796.tar gsoc2013-epiphany-e7d3de6ca1957c42c780d07473e76898a573c796.tar.gz gsoc2013-epiphany-e7d3de6ca1957c42c780d07473e76898a573c796.tar.bz2 gsoc2013-epiphany-e7d3de6ca1957c42c780d07473e76898a573c796.tar.lz gsoc2013-epiphany-e7d3de6ca1957c42c780d07473e76898a573c796.tar.xz gsoc2013-epiphany-e7d3de6ca1957c42c780d07473e76898a573c796.tar.zst gsoc2013-epiphany-e7d3de6ca1957c42c780d07473e76898a573c796.zip |
A src/languages.h:
2005-05-01 Christian Persch <chpe@cvs.gnome.org>
* data/default-prefs-common.js:
* data/epiphany.schemas.in:
* lib/ephy-langs.c:
A src/languages.h:
* src/prefs-dialog.c: (prefs_dialog_show_help),
(create_language_section), (get_download_button_label),
(prefs_dialog_init):
Add more font languages, and generate the language list
from the unicode supplemental data.
* lib/ephy-dialog.c:
* lib/ephy-dialog.h:
* src/prefs-dialog.c:
Constification.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ephy-dialog.c | 2 | ||||
-rw-r--r-- | lib/ephy-dialog.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/ephy-dialog.c b/lib/ephy-dialog.c index efeb5dcdd..9cd0518a3 100644 --- a/lib/ephy-dialog.c +++ b/lib/ephy-dialog.c @@ -1096,7 +1096,7 @@ void ephy_dialog_add_enum (EphyDialog *dialog, const char *id, guint n_items, - const char **items) + const char *const *items) { PropertyInfo *info; int i = 0; diff --git a/lib/ephy-dialog.h b/lib/ephy-dialog.h index 3a861cffb..e8e45ca72 100644 --- a/lib/ephy-dialog.h +++ b/lib/ephy-dialog.h @@ -94,7 +94,7 @@ void ephy_dialog_construct (EphyDialog *dialog, void ephy_dialog_add_enum (EphyDialog *dialog, const char *id, guint n_items, - const char **items); + const char * const *items); void ephy_dialog_set_data_column (EphyDialog *dialog, const char *id, |