bindings/cxx/classes.cpp: Fix a typo.

This commit is contained in:
Uwe Hermann 2015-03-25 17:37:01 +01:00
parent bb5f61105b
commit 60f6b00144
1 changed files with 1 additions and 1 deletions

View File

@ -888,7 +888,7 @@ Session::Session(shared_ptr<Context> context) :
_context(context),
_saving(false)
{
check(sr_session_new(context->structure, &_structure));
check(sr_session_new(context->_structure, &_structure));
_context->_session = this;
}