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/objects/class_lineedit.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/objects/class_lineedit.cpp')
| -rw-r--r-- | src/modules/objects/class_lineedit.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/objects/class_lineedit.cpp b/src/modules/objects/class_lineedit.cpp index 650af411..d51f4df8 100644 --- a/src/modules/objects/class_lineedit.cpp +++ b/src/modules/objects/class_lineedit.cpp @@ -217,7 +217,7 @@ KVSO_END_CONSTRUCTOR(KviKvsObject_lineedit) bool KviKvsObject_lineedit::init(KviKvsRunTimeContext * pContext,KviKvsVariantList * pParams) { - setObject(new TQLineEdit(parentScriptWidget(),getName()),true); + setObject(new TQLineEdit(parentScriptWidget(),getName().utf8().data()),true); connect(widget(),TQ_SIGNAL(returnPressed()),this,TQ_SLOT(slotreturnPressed())); connect(widget(),TQ_SIGNAL(lostFocus()),this,TQ_SLOT(slotlostFocus())); connect(widget(),TQ_SIGNAL(textChanged(const TQString & )),this,TQ_SLOT(slottextChanged(const TQString & ))); |
