diff options
| author | 2016-04-22 05:35:46 +0100 | |
|---|---|---|
| committer | 2016-04-22 05:41:32 +0100 | |
| commit | a350550506ed3ae0cb07742b0526188e028e3fd7 (patch) | |
| tree | 91d67cc867757b777822620e7a687fa0a0364643 /src/modules | |
| parent | libkvipython: indenting + documentation formatting (diff) | |
| download | KVIrc-a350550506ed3ae0cb07742b0526188e028e3fd7.tar.gz KVIrc-a350550506ed3ae0cb07742b0526188e028e3fd7.tar.bz2 KVIrc-a350550506ed3ae0cb07742b0526188e028e3fd7.zip | |
kvircmodule: capilalization of kvirc -> KVIrc
as suggested per
https://github.com/kvirc/KVIrc/commit/cab89774e5b773ed8bf64a1c523fb90a5990cd20
Diffstat (limited to 'src/modules')
| -rw-r--r-- | src/modules/pythoncore/kvircmodule.cpp | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/modules/pythoncore/kvircmodule.cpp b/src/modules/pythoncore/kvircmodule.cpp index 79eb15d72..ef291b16f 100644 --- a/src/modules/pythoncore/kvircmodule.cpp +++ b/src/modules/pythoncore/kvircmodule.cpp @@ -72,7 +72,7 @@ static PyObject * PyKVIrc_echo(PyObject * pSelf, PyObject * pArgs) if(QThread::currentThread() != g_pApp->thread()) { - qDebug("[pythoncore][ERROR] kvirc module functions must be called from the main KVIrc thread"); + qDebug("[pythoncore][ERROR] KVIrc module functions must be called from the main KVIrc thread"); return 0; // Sorry, we're NOT thread safe } @@ -109,7 +109,7 @@ static PyObject * PyKVIrc_say(PyObject * pSelf, PyObject * pArgs) if(QThread::currentThread() != g_pApp->thread()) { - qDebug("[pythoncore][ERROR] kvirc module functions must be called from the main KVIrc thread"); + qDebug("[pythoncore][ERROR] KVIrc module functions must be called from the main KVIrc thread"); return 0; // Sorry, we're NOT thread safe } @@ -147,7 +147,7 @@ static PyObject * PyKVIrc_warning(PyObject * pSelf, PyObject * pArgs) if(QThread::currentThread() != g_pApp->thread()) { - qDebug("[pythoncore][ERROR] kvirc module functions must be called from the main KVIrc thread"); + qDebug("[pythoncore][ERROR] KVIrc module functions must be called from the main KVIrc thread"); return 0; // Sorry, we're NOT thread safe } @@ -171,7 +171,7 @@ static PyObject * PyKVIrc_getLocal(PyObject * pSelf, PyObject * pArgs) if(QThread::currentThread() != g_pApp->thread()) { - qDebug("[pythoncore][ERROR] kvirc module functions must be called from the main KVIrc thread"); + qDebug("[pythoncore][ERROR] KVIrc module functions must be called from the main KVIrc thread"); return 0; // Sorry, we're NOT thread safe } @@ -200,7 +200,7 @@ static PyObject * PyKVIrc_setLocal(PyObject * pSelf, PyObject * pArgs) if(QThread::currentThread() != g_pApp->thread()) { - qDebug("[pythoncore][ERROR] kvirc module functions must be called from the main KVIrc thread"); + qDebug("[pythoncore][ERROR] KVIrc module functions must be called from the main KVIrc thread"); return 0; // Sorry, we're NOT thread safe } @@ -229,7 +229,7 @@ static PyObject * PyKVIrc_getGlobal(PyObject * pSelf, PyObject * pArgs) if(QThread::currentThread() != g_pApp->thread()) { - qDebug("[pythoncore][ERROR] kvirc module functions must be called from the main KVIrc thread"); + qDebug("[pythoncore][ERROR] KVIrc module functions must be called from the main KVIrc thread"); return 0; // Sorry, we're NOT thread safe } @@ -258,7 +258,7 @@ static PyObject * PyKVIrc_setGlobal(PyObject * pSelf, PyObject * pArgs) if(QThread::currentThread() != g_pApp->thread()) { - qDebug("[pythoncore][ERROR] kvirc module functions must be called from the main KVIrc thread"); + qDebug("[pythoncore][ERROR] KVIrc module functions must be called from the main KVIrc thread"); return 0; // Sorry, we're NOT thread safe } @@ -288,7 +288,7 @@ static PyObject * PyKVIrc_eval(PyObject * pSelf, PyObject * pArgs) if(QThread::currentThread() != g_pApp->thread()) { - qDebug("[pythoncore][ERROR] kvirc module functions must be called from the main KVIrc thread"); + qDebug("[pythoncore][ERROR] KVIrc module functions must be called from the main KVIrc thread"); return 0; // Sorry, we're NOT thread safe } @@ -326,7 +326,7 @@ static PyObject * PyKVIrc_internalWarning(PyObject * pSelf, PyObject * pArgs) if(QThread::currentThread() != g_pApp->thread()) { - qDebug("[pythoncore][ERROR] kvirc module functions must be called from the main KVIrc thread"); + qDebug("[pythoncore][ERROR] KVIrc module functions must be called from the main KVIrc thread"); return 0; // Sorry, we're NOT thread safe } @@ -346,7 +346,7 @@ static PyObject * PyKVIrc_error(PyObject * pSelf, PyObject * pArgs) if(QThread::currentThread() != g_pApp->thread()) { - qDebug("[pythoncore][ERROR] kvirc module functions must be called from the main KVIrc thread"); + qDebug("[pythoncore][ERROR] KVIrc module functions must be called from the main KVIrc thread"); return 0; // Sorry, we're NOT thread safe } @@ -361,7 +361,7 @@ static PyObject * PyKVIrc_error(PyObject * pSelf, PyObject * pArgs) static PyMethodDef KVIrcMethods[] = { { "echo", PyKVIrc_echo, METH_VARARGS, - "Outputs a text to a KVIrc window" }, + "Outputs text to a KVIrc window" }, { "say", PyKVIrc_say, METH_VARARGS, "Types text in a window" }, { "warning", PyKVIrc_warning, METH_VARARGS, @@ -406,7 +406,7 @@ PyMODINIT_FUNC python_init() }; PyObject * pModule = PyModule_Create(&def); if(!pModule) { - KVI_ASSERT("Python: Unable to initialize kvirc import module"); + KVI_ASSERT("Python: Unable to initialize KVIrc import module"); } else { // Create a CObject containing the API pointer array's address PyObject * pC_API_Object = PyCObject_FromVoidPtr(PyKVIrc_API, nullptr); |
