@@ -57,12 +57,12 @@ public:
5757
5858 /** Render the layer, to be overridden in child classes
5959 */
60- virtual bool draw(QgsRenderContext& renderContext );
60+ virtual bool draw(QgsRenderContext& rendererContext );
6161
6262 /** Draw labels
6363 * @TODO to be removed: used only in vector layers
6464 */
65- virtual void drawLabels(QgsRenderContext& renderContext );
65+ virtual void drawLabels(QgsRenderContext& rendererContext );
6666
6767 /** Return the extent of the layer as a QRect */
6868 const QgsRect extent();
@@ -107,15 +107,15 @@ public:
107107 /** True if the layer can be edited */
108108 virtual bool isEditable() const = 0;
109109
110- /** sets state from DOM document
111- @param layer_node is DOM node corresponding to ``maplayer'' tag
110+ /** sets state from Dom document
111+ @param layer_node is Dom node corresponding to ``maplayer'' tag
112112 @note
113113
114- The DOM node corresponds to a DOM document project file XML element read
114+ The Dom node corresponds to a Dom document project file XML element read
115115 by QgsProject.
116116
117117 This, in turn, calls readXml(), which is over-rideable by sub-classes so
118- that they can read their own specific state from the given DOM node.
118+ that they can read their own specific state from the given Dom node.
119119
120120 Invoked by QgsProject::read().
121121
@@ -124,15 +124,15 @@ public:
124124 bool readXML(QDomNode & layer_node);
125125
126126
127- /** stores state in DOM node
128- @param layer_node is DOM node corresponding to ``projectlayers'' tag
127+ /** stores state in Dom node
128+ @param layer_node is Dom node corresponding to ``projectlayers'' tag
129129 @note
130130
131- The DOM node corresponds to a DOM document project file XML element to be
131+ The Dom node corresponds to a Dom document project file XML element to be
132132 written by QgsProject.
133133
134134 This, in turn, calls writeXml(), which is over-rideable by sub-classes so
135- that they can write their own specific state to the given DOM node.
135+ that they can write their own specific state to the given Dom node.
136136
137137 Invoked by QgsProject::write().
138138
0 commit comments