Skip to content

Commit 577349f

Browse files
committed
Rearranging
1 parent 63b8cda commit 577349f

File tree

3 files changed

+2
-7
lines changed

3 files changed

+2
-7
lines changed

data/rollit.metainfo.xml.in

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,6 @@
6565
<keyword>Number</keyword>
6666
<keyword>Rnd</keyword>
6767
<keyword>Num</keyword>
68-
<keyword>elementary OS</keyword>
6968
</keywords>
7069

7170
<branding>

src/Application.vala

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff 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
}

src/Widgets/Buttons/PreviousRoll.vala

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77

88
public 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,

0 commit comments

Comments
 (0)