app: Remove temporary GimpDockWindow property prefixes

With GimpDock and GimpDockWindow being separate they can share
property names.
This commit is contained in:
Martin Nordholts
2009-09-26 16:25:30 +02:00
parent 4f7693acf0
commit 9106c75b14
2 changed files with 10 additions and 10 deletions

View File

@ -233,10 +233,10 @@ dialogs_toolbox_dock_window_new (GimpDialogFactory *factory,
gint view_size)
{
return g_object_new (GIMP_TYPE_DOCK_WINDOW,
"role", "gimp-toolbox",
"ui-manager-name", "<Toolbox>",
"gimp-dialog-factory", factory,
"gimp-context", context,
"role", "gimp-toolbox",
"ui-manager-name", "<Toolbox>",
"dialog-factory", factory,
"context", context,
NULL);
}
@ -256,10 +256,10 @@ dialogs_dock_window_new (GimpDialogFactory *factory,
gint view_size)
{
return g_object_new (GIMP_TYPE_DOCK_WINDOW,
"role", "gimp-dock",
"ui-manager-name", "<Dock>",
"gimp-dialog-factory", factory,
"gimp-context", context,
"role", "gimp-dock",
"ui-manager-name", "<Dock>",
"dialog-factory", factory,
"context", context,
NULL);
}