~ubuntu-branches/ubuntu/trusty/grantlee/trusty

« back to all changes in this revision

Viewing changes to templates/lib/rendercontext.h

  • Committer: Bazaar Package Importer
  • Author(s): Scott Kitterman
  • Date: 2010-12-07 09:19:01 UTC
  • Revision ID: james.westby@ubuntu.com-20101207091901-hsfsvnkxdshv4k8g
Tags: 0.1.7-0ubuntu3
Revert previous upload and try again with the correct patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
50
50
  /**
51
51
    Returns the data for the node @p scopeNode.
52
52
   */
53
 
  QVariant& data( Node * const scopeNode );
 
53
  QVariant& data ( Node * const scopeNode );
54
54
 
55
55
  /**
56
56
    Returns whether the RenderContext contains data for @p scopeNode.
74
74
  friend class ContextPrivate;
75
75
  friend class TemplateImpl;
76
76
 
77
 
  Q_DISABLE_COPY( RenderContext )
78
 
  Q_DECLARE_PRIVATE( RenderContext )
 
77
  Q_DISABLE_COPY(RenderContext)
 
78
  Q_DECLARE_PRIVATE(RenderContext)
79
79
  RenderContextPrivate * const d_ptr;
80
80
#endif
81
81
};