[gnome-calculator/wip/ricotz/gcalc: 11/11] Remove superfluous casts in MathEquation
- From: Rico Tzschichholz <ricotz src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-calculator/wip/ricotz/gcalc: 11/11] Remove superfluous casts in MathEquation
- Date: Mon, 14 Oct 2019 16:13:03 +0000 (UTC)
commit 054e9c36ee45581217595bc313121306246440d3
Author: Rico Tzschichholz <ricotz ubuntu com>
Date: Mon Oct 7 21:45:30 2019 +0200
Remove superfluous casts in MathEquation
lib/math-equation.vala | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
---
diff --git a/lib/math-equation.vala b/lib/math-equation.vala
index d2c3e620..119d5c8d 100644
--- a/lib/math-equation.vala
+++ b/lib/math-equation.vala
@@ -324,7 +324,7 @@ public class MathEquation : Gtk.SourceBuffer
{
Gtk.TextIter iter;
get_iter_at_offset (out iter, offset);
- (this as Gtk.TextBuffer).insert (ref iter, serializer.get_thousands_separator
().to_string (), -1);
+ base.insert (ref iter, serializer.get_thousands_separator ().to_string (), -1);
offset++;
last_is_tsep = true;
}
@@ -826,7 +826,7 @@ public class MathEquation : Gtk.SourceBuffer
get_iter_at_mark (out iter_prev, get_insert ());
if (iter_prev.backward_char () && iter_prev.get_char ().to_string () == "×" )
{
- (this as Gtk.TextBuffer).backspace (iter, true, true);
+ base.backspace (iter, true, true);
insert_at_cursor ("^", -1);
return;
}
@@ -840,7 +840,7 @@ public class MathEquation : Gtk.SourceBuffer
get_iter_at_mark (out iter_prev, get_insert ());
if (iter_prev.backward_char () && iter_prev.get_char ().to_string () == ">" )
{
- (this as Gtk.TextBuffer).backspace (iter, true, true);
+ base.backspace (iter, true, true);
insert_at_cursor ("»", -1);
return;
}
@@ -854,7 +854,7 @@ public class MathEquation : Gtk.SourceBuffer
get_iter_at_mark (out iter_prev, get_insert ());
if (iter_prev.backward_char () && iter_prev.get_char ().to_string () == "<" )
{
- (this as Gtk.TextBuffer).backspace (iter, true, true);
+ base.backspace (iter, true, true);
insert_at_cursor ("«", -1);
return;
}
@@ -1303,7 +1303,7 @@ public class MathEquation : Gtk.SourceBuffer
{
Gtk.TextIter iter;
get_iter_at_mark (out iter, get_insert ());
- (this as Gtk.TextBuffer).backspace (iter, true, true);
+ base.backspace (iter, true, true);
}
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]