[gnome-calculator/fix-cli-string: 9/10] gnome-calculator.vala: Add missing parenthesis
- From: Robert Roth <robertroth src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-calculator/fix-cli-string: 9/10] gnome-calculator.vala: Add missing parenthesis
- Date: Sun, 19 Jan 2020 19:52:31 +0000 (UTC)
commit 123752263619f9e2ad992d93ff6e55591d80d1b6
Author: Rafael Fontenelle <rafaelff gnome org>
Date: Mon Dec 30 16:47:59 2019 -0300
gnome-calculator.vala: Add missing parenthesis
src/gnome-calculator.vala | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/src/gnome-calculator.vala b/src/gnome-calculator.vala
index 0f9d6002..15fd90d5 100644
--- a/src/gnome-calculator.vala
+++ b/src/gnome-calculator.vala
@@ -21,7 +21,7 @@ public class Calculator : Gtk.Application
private static string mode_string = null;
private const OptionEntry[] option_entries = {
- { "mode", 'm', 0, OptionArg.STRING, ref mode_string, N_("Start in given mode (%s)".format("basic,
advanced, financial, programming, keyboard"), "mode" },
+ { "mode", 'm', 0, OptionArg.STRING, ref mode_string, N_("Start in given mode (%s)".format("basic,
advanced, financial, programming, keyboard")), "mode" },
{ "solve", 's', 0, OptionArg.STRING, null, N_("Solve given equation"), "equation" },
{ "equation", 'e', 0, OptionArg.STRING, ref equation_string, N_("Start with given equation"),
"equation"},
{ "version", 'v', 0, OptionArg.NONE, null, N_("Show release version"), null },
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]