~ubuntu-branches/ubuntu/utopic/anjuta/utopic

« back to all changes in this revision

Viewing changes to libanjuta/anjuta-preferences-dialog.c

  • Committer: Package Import Robot
  • Author(s): Andreas Henriksson, Jackson Doak
  • Date: 2014-07-12 15:17:39 UTC
  • mfrom: (1.1.56) (27.1.27 sid)
  • Revision ID: package-import@ubuntu.com-20140712151739-eyw0ufhvwa5s11jc
Tags: 2:3.12.0-1
* Team upload.

[ Jackson Doak ]
* New upstream release
* Drop 03_valac_0.22.patch, fixed upstream\
* debian/control:
  - Bump b-dep version on libgtk-3-dev (>= 3.6.0), libglib2.0-dev (>= 2.34.0)
  - Bump stardards-version to 3.9.5. No changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
 *
16
16
 * You should have received a copy of the GNU General Public License
17
17
 * along with this program; if not, write to the Free Software
18
 
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19
19
 */
20
20
 
21
21
/**
41
41
#include <libanjuta/anjuta-cell-renderer-captioned-image.h>
42
42
#include <libanjuta/anjuta-preferences-dialog.h>
43
43
 
 
44
#define PREFERENCES_DEFAULT_WIDTH 800
 
45
#define PREFERENCES_DEFAULT_HEIGHT 400
 
46
 
44
47
struct _AnjutaPreferencesDialogPrivate {
45
48
        GtkWidget *treeview;
46
49
        GtkListStore *store;
238
241
anjuta_preferences_dialog_new (void)
239
242
{
240
243
        return g_object_new (ANJUTA_TYPE_PREFERENCES_DIALOG, 
241
 
                                 "title", _("Anjuta Preferences"),
242
 
                                 NULL);
 
244
                             "title", _("Anjuta Preferences"),
 
245
                             "default-width", PREFERENCES_DEFAULT_WIDTH,
 
246
                             "default-height", PREFERENCES_DEFAULT_HEIGHT,
 
247
                             NULL);
243
248
}
244
249
 
245
250
/**