~ubuntu-branches/ubuntu/trusty/xiphos/trusty

« back to all changes in this revision

Viewing changes to src/gnome2/sidebar_dialog.c

  • Committer: Bazaar Package Importer
  • Author(s): Dmitrijs Ledkovs
  • Date: 2009-08-12 19:21:05 UTC
  • Revision ID: james.westby@ubuntu.com-20090812192105-dw40gql5mdqvgx84
Tags: 3.1.1-1
* New upstream release (bugfix)

* debian/copyright updates:
  - help/* is GFDL and referencing license file as per policy 3.8.2
  - updated copyright holders (Gnomesword -> Xiphos)

* debian/control:
  - Bumped standards version (Changed debian/copyright as above)
  - Updated VCS-Bzr field to point to a working URL
  - Fixed typo in debian/control (Closes: #539190)
  - Updated extended description of xiphos package (Closes: #539880)
  - Significantly improved wording of all descriptions
  - Added Conflicts: xiphos-svn - upstream deb package name for svn builds

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 * Xiphos Bible Study Tool
3
3
 * sidebar_dialog.c - dialog for detached sidebar
4
4
 *
5
 
 * Copyright (C) 2000-2008 Xiphos Developer Team
 
5
 * Copyright (C) 2000-2009 Xiphos Developer Team
6
6
 *
7
7
 * This program is free software; you can redistribute it and/or modify
8
8
 * it under the terms of the GNU General Public License as published by
129
129
GtkWidget* create_sidebar_dialog(void)
130
130
{
131
131
        GtkWidget *dlgDock; 
 
132
        gchar *title;
132
133
 
133
134
        dlgDock = gtk_window_new(GTK_WINDOW_TOPLEVEL);
134
135
        gtk_object_set_data(GTK_OBJECT(dlgDock), "dlgDock", dlgDock);
141
142
        gtk_widget_show(vbox_dock);
142
143
        gtk_container_add(GTK_CONTAINER(dlgDock), vbox_dock);
143
144
 
 
145
        title = g_strdup_printf("%s - %s", _("Sidebar"), settings.program_title);
 
146
        gtk_window_set_title(GTK_WINDOW(dlgDock), title);
 
147
        g_free(title);
 
148
 
144
149
        g_signal_connect(G_OBJECT(dlgDock), "destroy",
145
150
                        G_CALLBACK(on_dialog_destroy), NULL);
146
151