1
0
mirror of https://github.com/arsenetar/dupeguru.git synced 2026-01-22 06:37:17 +00:00

Fixed the building process of the block module for Qt.

This commit is contained in:
Virgil Dupras
2010-08-21 16:04:23 +01:00
parent 8e5c2a8875
commit 33f372f6c6
3 changed files with 5 additions and 5 deletions

View File

@@ -159,7 +159,7 @@ static PyMethodDef BlockMethods[] = {
static struct PyModuleDef BlockDef = {
PyModuleDef_HEAD_INIT,
"_block",
"_block_qt",
NULL,
-1,
BlockMethods,
@@ -170,7 +170,7 @@ static struct PyModuleDef BlockDef = {
};
PyObject *
PyInit__block(void)
PyInit__block_qt(void)
{
PyObject *m = PyModule_Create(&BlockDef);
if (m == NULL) {