diff options
Diffstat (limited to 'lib/ephy-dialog.c')
-rw-r--r-- | lib/ephy-dialog.c | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/lib/ephy-dialog.c b/lib/ephy-dialog.c index ae2f8598c..61af99312 100644 --- a/lib/ephy-dialog.c +++ b/lib/ephy-dialog.c @@ -1,6 +1,6 @@ /* * Copyright (C) 2000-2003 Marco Pesenti Gritti - * Copyright (C) 2003 Christian Persch + * Copyright (C) 2003, 2004 Christian Persch * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -989,11 +989,13 @@ static void impl_construct (EphyDialog *dialog, const EphyDialogProperty *properties, const char *file, - const char *name) + const char *name, + const char *domain) { GladeXML *gxml; - gxml = ephy_glade_widget_new (file, name, &(dialog->priv->dialog), dialog); + gxml = ephy_glade_widget_new + (file, name, &(dialog->priv->dialog), dialog, domain); if (dialog->priv->name == NULL) { @@ -1139,10 +1141,11 @@ void ephy_dialog_construct (EphyDialog *dialog, const EphyDialogProperty *properties, const char *file, - const char *name) + const char *name, + const char *domain) { EphyDialogClass *klass = EPHY_DIALOG_GET_CLASS (dialog); - return klass->construct (dialog, properties, file, name); + return klass->construct (dialog, properties, file, name, domain); } void |