blob: e773dadd59a8e0cf703bb549c9b2480072d467bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/* Copyright 2016 Software Freedom Conservancy Inc.
*
* This software is licensed under the GNU LGPL (version 2.1 or later).
* See the COPYING file in this distribution.
*/
[GtkTemplate (ui = "/org/gnome/Shotwell/ui/message_pane.ui")]
private class PageMessagePane : Gtk.Box {
[GtkChild]
public unowned Gtk.Label label;
[GtkChild]
public unowned Gtk.Image icon_image;
public PageMessagePane() {
Object();
}
}
|