~ubuntu-branches/ubuntu/wily/almanah/wily-proposed

« back to all changes in this revision

Viewing changes to src/main-window.h

  • Committer: Package Import Robot
  • Author(s): Angel Abad
  • Date: 2013-05-14 10:27:40 UTC
  • mfrom: (1.4.3)
  • Revision ID: package-import@ubuntu.com-20130514102740-51ms12655c04devm
Tags: 0.10.8-1
* Imported Upstream version 0.10.8
* debian/control:
  - Build-Depends on versioned libgtk-3-dev (>= 3.5.6)
  - Remove libedataserverui-3.0-dev from Build-Depends
  - Build-Depends on libgtkspell3-3-dev
* debian/patches/desktop_keywords:
  - Add Keywords entry in .desktop file
* debian/patches/spellchecking_error:
  - Fix spellchecking errors

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
typedef struct _AlmanahMainWindowPrivate        AlmanahMainWindowPrivate;
39
39
 
40
40
typedef struct {
41
 
        GtkWindow parent;
 
41
        GtkApplicationWindow parent;
42
42
        AlmanahMainWindowPrivate *priv;
43
43
} AlmanahMainWindow;
44
44
 
45
45
typedef struct {
46
 
        GtkWindowClass parent;
 
46
        GtkApplicationWindowClass parent;
47
47
} AlmanahMainWindowClass;
48
48
 
49
49
GType almanah_main_window_get_type (void);
50
50
AlmanahMainWindow *almanah_main_window_new (AlmanahApplication *application) G_GNUC_WARN_UNUSED_RESULT G_GNUC_MALLOC;
51
51
 
52
52
void almanah_main_window_select_date (AlmanahMainWindow *self, GDate *date);
 
53
void almanah_main_window_save_current_entry (AlmanahMainWindow *self, gboolean prompt_user);
53
54
 
54
55
G_END_DECLS
55
56