@@ -128,7 +128,7 @@ class CORE_EXPORT QgsMapLayer : public QObject
128
128
The DOM node corresponds to a DOM document project file XML element read
129
129
by QgsProject.
130
130
131
- This, in turn, calls readXML_ (), which is over-rideable by sub-classes so
131
+ This, in turn, calls readXml (), which is over-rideable by sub-classes so
132
132
that they can read their own specific state from the given DOM node.
133
133
134
134
Invoked by QgsProject::read().
@@ -145,7 +145,7 @@ class CORE_EXPORT QgsMapLayer : public QObject
145
145
The DOM node corresponds to a DOM document project file XML element to be
146
146
written by QgsProject.
147
147
148
- This, in turn, calls writeXML_ (), which is over-rideable by sub-classes so
148
+ This, in turn, calls writeXml (), which is over-rideable by sub-classes so
149
149
that they can write their own specific state to the given DOM node.
150
150
151
151
Invoked by QgsProject::write().
@@ -289,12 +289,12 @@ public slots:
289
289
/* * called by readXML(), used by children to read state specific to them from
290
290
project files.
291
291
*/
292
- virtual bool readXML_ ( QDomNode & layer_node );
292
+ virtual bool readXml ( QDomNode & layer_node );
293
293
294
294
/* * called by writeXML(), used by children to write state specific to them to
295
295
project files.
296
296
*/
297
- virtual bool writeXML_ ( QDomNode & layer_node, QDomDocument & document );
297
+ virtual bool writeXml ( QDomNode & layer_node, QDomDocument & document );
298
298
299
299
/* * debugging member - invoked when a connect() is made to this object */
300
300
void connectNotify ( const char * signal );
0 commit comments