diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2026-02-21 11:03:45 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2026-02-21 20:54:51 +0900 |
| commit | 4d13f1a2267c6864b98c5a46631b1e2bbe3c024a (patch) | |
| tree | 72d524c66325b2c554bafcf86225d26664373444 /src/modules/spaste/libkvispaste.cpp | |
| parent | f14a1c5c8c988ef6901545040aabedf8027ecc18 (diff) | |
| download | kvirc-feat/more-fixes-for-cmake.tar.gz kvirc-feat/more-fixes-for-cmake.zip | |
Fix conversion of TQString to const char* (modules)feat/more-fixes-for-cmake
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/modules/spaste/libkvispaste.cpp')
| -rw-r--r-- | src/modules/spaste/libkvispaste.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/spaste/libkvispaste.cpp b/src/modules/spaste/libkvispaste.cpp index 92a28a31..dacf3fbc 100644 --- a/src/modules/spaste/libkvispaste.cpp +++ b/src/modules/spaste/libkvispaste.cpp @@ -221,7 +221,7 @@ static bool spaste_kvs_cmd_stop(KviKvsModuleCommandCall * c) while( (item = it.current()) != 0) { ++it; - if(kvi_strEqualCS(item->window()->id(),c->window()->id()))delete item; + if(kvi_strEqualCS(item->window()->id().utf8().data(),c->window()->id().utf8().data()))delete item; } } } else //Delete the spaste with the given id |
