[buoh] buoh-comic-list.c: Fix typo



commit 63959b9a335fbeed27a568476de854a906b59547
Author: Rafael Fontenelle <rffontenelle gmail com>
Date:   Sat Sep 1 18:45:36 2018 +0000

    buoh-comic-list.c: Fix typo

 src/buoh-comic-list.c | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)
---
diff --git a/src/buoh-comic-list.c b/src/buoh-comic-list.c
index bbbdfae..36722f1 100644
--- a/src/buoh-comic-list.c
+++ b/src/buoh-comic-list.c
@@ -42,7 +42,7 @@ static void buoh_comic_list_class_init             (BuohComicListClass *klass);
 static void buoh_comic_list_finalize               (GObject *object);
 
 static void buoh_comic_list_get_preferred_width    (GtkWidget        *widget,
-                                                    gint             *minimun,
+                                                    gint             *minimum,
                                                     gint             *natural);
 static void     buoh_comic_list_size_allocate      (GtkWidget        *widget,
                                                     GtkAllocation    *allocation);
@@ -176,25 +176,25 @@ buoh_comic_list_finalize (GObject *object)
 
 static void
 buoh_comic_list_get_preferred_width (GtkWidget *widget,
-                                     gint      *minimun,
+                                     gint      *minimum,
                                      gint      *natural)
 {
         GtkBin    *bin = GTK_BIN (widget);
         GtkWidget *child;
-        gint       child_minimun;
+        gint       child_minimum;
         gint       child_natural;
 
         child = gtk_bin_get_child (bin);
 
         if (child && gtk_widget_get_visible (child)) {
                 gtk_widget_get_preferred_width (child,
-                                                &child_minimun,
+                                                &child_minimum,
                                                 &child_natural);
                 /* we need some extra size */
-                *minimun = child_minimun + 100;
+                *minimum = child_minimum + 100;
                 *natural = child_natural + 100;
         } else {
-                *minimun = 0;
+                *minimum = 0;
                 *natural = 0;
         }
 }


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