[gnome-clocks] Small cleanup
- From: Paolo Borelli <pborelli src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-clocks] Small cleanup
- Date: Sun, 31 Mar 2013 13:40:14 +0000 (UTC)
commit 2479b423e0bff6c9e1bda1c9aa57c99ef77328ad
Author: Paolo Borelli <pborelli gnome org>
Date: Sun Mar 31 15:35:43 2013 +0200
Small cleanup
Vala is smart enough to figure out the string copy on its own.
src/utils.vala | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
---
diff --git a/src/utils.vala b/src/utils.vala
index e43b1d3..34ff5ae 100644
--- a/src/utils.vala
+++ b/src/utils.vala
@@ -164,7 +164,7 @@ public class Weekdays {
public static string plural (Day d) {
assert (d >= 0 && d < 7);
- return plurals[d].dup ();
+ return plurals[d];
}
public static string abbreviation (Day d) {
@@ -183,7 +183,7 @@ public class Weekdays {
(new GLib.DateTime.utc (1, 1, 7, 0, 0, 0)).format ("%a"),
};
}
- return abbreviations[d].dup ();
+ return abbreviations[d];
}
private bool[] days= {
@@ -228,13 +228,13 @@ public class Weekdays {
}
if (n == 0) {
- r = "".dup ();
+ r = "";
} else if (n == 1) {
r = plural ((Day) first);
} else if (n == 7) {
- r = _("Every Day").dup ();
+ r = _("Every Day");
} else if (days_equal (weekdays)) {
- r = _("Weekdays").dup ();
+ r = _("Weekdays");
} else {
string[] abbrs = {};
for (int i = 0; i < 7; i++) {
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]