diff options
| author | 2010-07-06 21:32:14 +0000 | |
|---|---|---|
| committer | 2010-07-06 21:32:14 +0000 | |
| commit | d5aed6eeb8f845f171f83058594be7d8de7628aa (patch) | |
| tree | 3ae6af27fff5c455a3f10189ba69bc57d9b70902 /src/modules/system/plugin.h | |
| parent | Fix mismatched delete/delete[]. Thnx PKEuS :) (diff) | |
| download | KVIrc-d5aed6eeb8f845f171f83058594be7d8de7628aa.tar.gz KVIrc-d5aed6eeb8f845f171f83058594be7d8de7628aa.tar.bz2 KVIrc-d5aed6eeb8f845f171f83058594be7d8de7628aa.zip | |
Constness fixes. Thnks PKEuS :)
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@4621 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/system/plugin.h')
| -rw-r--r-- | src/modules/system/plugin.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/system/plugin.h b/src/modules/system/plugin.h index 43229ab76..0ff3c9baa 100644 --- a/src/modules/system/plugin.h +++ b/src/modules/system/plugin.h @@ -53,7 +53,7 @@ public: bool unload(); bool canunload(); int call(const QString& szFunctionName, int argc, char * argv[], char ** pBuffer); - QString name(); + QString name() const; void setName(const QString& szName); protected: }; |
