summaryrefslogtreecommitdiffstats
path: root/examples/corelib/bindableproperties/bindablesubscription/bindableuser.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/corelib/bindableproperties/bindablesubscription/bindableuser.cpp')
-rw-r--r--examples/corelib/bindableproperties/bindablesubscription/bindableuser.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/examples/corelib/bindableproperties/bindablesubscription/bindableuser.cpp b/examples/corelib/bindableproperties/bindablesubscription/bindableuser.cpp
index fc651c2579..d30e203b61 100644
--- a/examples/corelib/bindableproperties/bindablesubscription/bindableuser.cpp
+++ b/examples/corelib/bindableproperties/bindablesubscription/bindableuser.cpp
@@ -50,6 +50,8 @@
#include "bindableuser.h"
+//! [bindable-user-setters]
+
void BindableUser::setCountry(Country country)
{
m_country = country;
@@ -59,3 +61,5 @@ void BindableUser::setAge(int age)
{
m_age = age;
}
+
+//! [bindable-user-setters]