static const gchar * biji_note_obj_get_path (BijiItem *item) { g_return_val_if_fail (BIJI_IS_NOTE_OBJ (item), NULL); BijiNoteObj *note = BIJI_NOTE_OBJ (item); return biji_note_id_get_path (note->priv->id); }
static void biji_note_obj_get_property (GObject *object, guint property_id, GValue *value, GParamSpec *pspec) { BijiNoteObj *self = BIJI_NOTE_OBJ (object); switch (property_id) { case PROP_PATH: g_value_set_object (value, biji_note_id_get_path (self->priv->id)); break; default: G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec); break; } }
gchar* biji_note_obj_get_path (BijiNoteObj* n) { return biji_note_id_get_path(n->priv->id) ; }