[gnome-calculator] Fixed compile errors



commit 284542a1f10803c87eb56984d91029e058110238
Author: Robert Roth <robert roth off gmail com>
Date:   Mon Aug 1 09:43:07 2022 +0300

    Fixed compile errors

 src/math-function-popover.vala | 4 ++--
 src/math-variable-popover.vala | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/src/math-function-popover.vala b/src/math-function-popover.vala
index 6d812113..c6bcc070 100644
--- a/src/math-function-popover.vala
+++ b/src/math-function-popover.vala
@@ -41,12 +41,12 @@ public class MathFunctionPopover : MathPopover<MathFunction>
         item_deleted.connect (function_deleted_cb);
     }
     
-    protected abstract Gtk.Entry name_entry ()
+    protected Gtk.Entry name_entry ()
     {
         return function_name_entry;
     }
     
-    protected abstract Gtk.Button add_button ()
+    protected Gtk.Button add_button ()
     {
        return add_function_button;
     }
diff --git a/src/math-variable-popover.vala b/src/math-variable-popover.vala
index 48dce2ca..41520e86 100644
--- a/src/math-variable-popover.vala
+++ b/src/math-variable-popover.vala
@@ -52,12 +52,12 @@ public class MathVariablePopover : MathPopover<MathVariable>
         item_deleted.connect (delete_variable_cb);
     }
 
-    protected abstract Gtk.Entry name_entry ()
+    protected Gtk.Entry name_entry ()
     {
         return variable_name_entry;
     }
     
-    protected abstract Gtk.Button add_button ()
+    protected Gtk.Button add_button ()
     {
        return store_variable_button;
     }


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]