File tree Expand file tree Collapse file tree 3 files changed +2
-7
lines changed Expand file tree Collapse file tree 3 files changed +2
-7
lines changed Original file line number Diff line number Diff line change 6565 <keyword >Number</keyword >
6666 <keyword >Rnd</keyword >
6767 <keyword >Num</keyword >
68- <keyword >elementary OS</keyword >
6968 </keywords >
7069
7170 <branding >
Original file line number Diff line number Diff line change @@ -35,7 +35,6 @@ public class Rollit.Application : Gtk.Application {
3535 }
3636
3737 construct {
38-
3938 Intl . setlocale (LocaleCategory . ALL , " " );
4039 Intl . bindtextdomain (GETTEXT_PACKAGE , LOCALEDIR );
4140 Intl . bind_textdomain_codeset (GETTEXT_PACKAGE , " UTF-8" );
@@ -54,7 +53,6 @@ public class Rollit.Application : Gtk.Application {
5453 Application . settings. set_boolean (" show-history" , (! if_hist_visible));
5554 });
5655
57-
5856 var roll_action = new SimpleAction (" roll" , null );
5957 add_action (roll_action);
6058 set_accels_for_action (" app.roll" , {" <Control>r" , " r" });
@@ -136,7 +134,6 @@ public class Rollit.Application : Gtk.Application {
136134
137135 public static int main (string [] args ) {
138136 var app = new Application ();
139-
140137 return app. run (args);
141138 }
142139}
Original file line number Diff line number Diff line change 77
88public class Rollit.PreviousRoll : Gtk .ListBoxRow {
99
10- public signal void copied ();
11-
1210 private Gtk . Image copy_icon;
1311 private uint timeout_id;
1412
@@ -18,6 +16,8 @@ public class Rollit.PreviousRoll : Gtk.ListBoxRow {
1816 public Gtk . Label roll_amount { get ; set ; }
1917 private Gtk . Label dicetype { get ; set ; }
2018
19+ public signal void copied ();
20+
2121 public PreviousRoll (int roll, int maxroll) {
2222 Object (
2323 roll_label: roll. to_string (),
@@ -26,7 +26,6 @@ public class Rollit.PreviousRoll : Gtk.ListBoxRow {
2626 }
2727
2828 construct {
29-
3029 // /TRANSLATORS: %s is replace by a dice number. Ex: d100.
3130 dicetype = new Gtk .Label (_(" d%s : " ). printf (dicetype_label)) {
3231 halign = Gtk . Align . START ,
You can’t perform that action at this time.
0 commit comments