summary refs log tree commit diff stats
path: root/qobject/qbool.c
diff options
context:
space:
mode:
Diffstat (limited to 'qobject/qbool.c')
-rw-r--r--qobject/qbool.c15
1 files changed, 2 insertions, 13 deletions
diff --git a/qobject/qbool.c b/qobject/qbool.c
index e5a7a53879..b58249925c 100644
--- a/qobject/qbool.c
+++ b/qobject/qbool.c
@@ -40,22 +40,11 @@ bool qbool_get_bool(const QBool *qb)
 }
 
 /**
- * qobject_to_qbool(): Convert a QObject into a QBool
- */
-QBool *qobject_to_qbool(const QObject *obj)
-{
-    if (!obj || qobject_type(obj) != QTYPE_QBOOL) {
-        return NULL;
-    }
-    return container_of(obj, QBool, base);
-}
-
-/**
  * qbool_is_equal(): Test whether the two QBools are equal
  */
 bool qbool_is_equal(const QObject *x, const QObject *y)
 {
-    return qobject_to_qbool(x)->value == qobject_to_qbool(y)->value;
+    return qobject_to(QBool, x)->value == qobject_to(QBool, y)->value;
 }
 
 /**
@@ -65,5 +54,5 @@ bool qbool_is_equal(const QObject *x, const QObject *y)
 void qbool_destroy_obj(QObject *obj)
 {
     assert(obj != NULL);
-    g_free(qobject_to_qbool(obj));
+    g_free(qobject_to(QBool, obj));
 }