Skip to content

Commit ab85a37

Browse files
author
timlinux
committedAug 23, 2008
Follow Qt naming style: fileName instead of filename, layerName instead of layerName
git-svn-id: http://svn.osgeo.org/qgis/trunk@9136 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 0636f41 commit ab85a37

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+221
-221
lines changed
 

‎python/core/qgslogger.sip

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
QGIS_DEBUG is an int describing what debug messages are written to the console. If the debug level of a message is <= QGIS_DEBUG, the message is written to the console. It the variable QGIS_DEBUG is not defined, it defaults to 1 for debug mode and to 0 for release mode
55

6-
QGIS_DEBUG_FILE may contain a filename. Only the messages from this file are printed (provided they have the right debuglevel). If QGIS_DEBUG_FILE is not set, messages from all files are printed
6+
QGIS_DEBUG_FILE may contain a fileName. Only the messages from this file are printed (provided they have the right debuglevel). If QGIS_DEBUG_FILE is not set, messages from all files are printed
77
*/
88

99
class QgsLogger
@@ -17,7 +17,7 @@ class QgsLogger
1717
/**Goes to qDebug.
1818
@param msg the message to be printed
1919
@param debuglevel
20-
@param file filename where the message comes from
20+
@param file fileName where the message comes from
2121
@param function function where the message comes from
2222
@param line place in file where the message comes from*/
2323
static void debug(const QString& msg, int debuglevel = 1, const char* file = NULL, const char* function = NULL, int line = -1);

‎python/core/qgsmarkercatalogue.sip

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public:
2626
*/
2727
QPicture pictureMarker (QString fullName, int size, QPen pen, QBrush brush, bool qtBug = true );
2828

29-
/** Returns a pixmap given a filename of a svg marker
29+
/** Returns a pixmap given a fileName of a svg marker
3030
* NOTE: this method needs to be public static for QgsMarkerDialog::visualizeMarkers */
3131
static void svgMarker (QPainter * thepPainter, QString name, int size );
3232
};

0 commit comments

Comments
 (0)
Please sign in to comment.