]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/context-scheme.cc
Replace internal_get_property with get_property where possible
[lilypond.git] / lily / context-scheme.cc
index c3822100af4b079301bef089ac0ce0f27bd9fe58..8ff668eadac2403b0a3fdde3b647cc09853226e2 100644 (file)
@@ -102,7 +102,7 @@ LY_DEFINE (ly_context_property, "ly:context-property",
   LY_ASSERT_TYPE (ly_is_symbol, sym, 2);
 
   Context *t = Context::unsmob (context);
-  SCM result = t->internal_get_property (sym);
+  SCM result = t->get_property (sym);
   return def != SCM_UNDEFINED && scm_is_null (result) ? def : result;
 }