Solution to issue TDE/tdewebdev#42
Signed-off-by: ormorph <roma251078@mail.ru>
(cherry picked from commit 3f16574bad
)
r14.1.x
parent
1d4896e65a
commit
dce40bcbee
@ -0,0 +1,65 @@
|
||||
--- a/kxsldbg/kxsldbgpart/libxsldbg/files.cpp 2024-03-24 15:56:49.245591213 +0300
|
||||
+++ b/kxsldbg/kxsldbgpart/libxsldbg/files.cpp 2024-03-24 15:57:57.025588378 +0300
|
||||
@@ -34,9 +34,12 @@
|
||||
#include "xsldbgthread.h"
|
||||
#ifdef WIN32
|
||||
#include <direct.h>
|
||||
+#else
|
||||
+#include <unistd.h>
|
||||
#endif
|
||||
|
||||
#endif /* BUILD_DOCS */
|
||||
+#include <cstdlib>
|
||||
|
||||
|
||||
/* top xml document */
|
||||
--- a/kxsldbg/kxsldbgpart/libxsldbg/files_unix.cpp 2024-03-24 15:56:49.247591213 +0300
|
||||
+++ b/kxsldbg/kxsldbgpart/libxsldbg/files_unix.cpp 2024-03-24 15:57:57.027588378 +0300
|
||||
@@ -21,6 +21,7 @@
|
||||
#include "files.h"
|
||||
#include "utils.h"
|
||||
#include "options.h"
|
||||
+#include <cstdlib>
|
||||
|
||||
static char *tempNames[2] = { NULL, NULL };
|
||||
|
||||
--- a/kxsldbg/kxsldbgpart/libxsldbg/options.cpp 2024-03-24 15:56:49.250591212 +0300
|
||||
+++ b/kxsldbg/kxsldbgpart/libxsldbg/options.cpp 2024-03-24 15:57:57.028588378 +0300
|
||||
@@ -27,6 +27,7 @@
|
||||
#include <kstandarddirs.h>
|
||||
#include <tqfileinfo.h>
|
||||
#include <tqstringlist.h>
|
||||
+#include <cstdlib>
|
||||
|
||||
|
||||
/* keep track of our integer/boolean options */
|
||||
--- a/kxsldbg/kxsldbgpart/libxsldbg/os_cmds.cpp 2024-03-24 15:56:49.252591212 +0300
|
||||
+++ b/kxsldbg/kxsldbgpart/libxsldbg/os_cmds.cpp 2024-03-24 15:57:57.029588378 +0300
|
||||
@@ -19,6 +19,7 @@
|
||||
#include "xsldbg.h"
|
||||
#include "debugXSL.h"
|
||||
#include "files.h"
|
||||
+#include <cstdlib>
|
||||
|
||||
/* -----------------------------------------
|
||||
|
||||
--- a/kxsldbg/kxsldbgpart/libxsldbg/xsldbg.cpp 2024-03-24 15:56:49.260591212 +0300
|
||||
+++ b/kxsldbg/kxsldbgpart/libxsldbg/xsldbg.cpp 2024-03-24 15:57:57.030588378 +0300
|
||||
@@ -39,6 +39,7 @@
|
||||
#include "files.h"
|
||||
#include "breakpoint.h"
|
||||
#include "debugXSL.h"
|
||||
+#include <cstdlib>
|
||||
|
||||
#include <libxml/xmlerror.h>
|
||||
#include "xsldbgmsg.h"
|
||||
--- a/kxsldbg/xsldbgmain.cpp 2024-03-24 15:56:49.290591211 +0300
|
||||
+++ b/kxsldbg/xsldbgmain.cpp 2024-03-24 15:57:57.032588378 +0300
|
||||
@@ -39,6 +39,7 @@
|
||||
#include <tdelocale.h>
|
||||
#include <tdeglobal.h>
|
||||
#include <kdebug.h>
|
||||
+#include <cstdlib>
|
||||
/* Forward delare private functions */
|
||||
static int notifyXsldbgAppSimple(XsldbgMessageEnum type, const void *data);
|
||||
static int notifyStateXsldbgAppSimple(XsldbgMessageEnum type, int commandId,
|
@ -0,0 +1,21 @@
|
||||
--- a/quanta/parsers/dtd/dtdparser.cpp 2024-03-24 17:50:30.532305927 +0300
|
||||
+++ b/quanta/parsers/dtd/dtdparser.cpp 2024-03-24 17:51:05.456304466 +0300
|
||||
@@ -82,7 +82,8 @@
|
||||
if( DTD::dtd_ptr == NULL )
|
||||
{
|
||||
TQString errorStr = i18n("Unknown");
|
||||
- xmlErrorPtr errorPtr = xmlGetLastError();
|
||||
+ // The type used is either xmlErrorPtr or const xmlError*
|
||||
+ auto errorPtr = xmlGetLastError();
|
||||
if (errorPtr != NULL)
|
||||
{
|
||||
TQString s = TQString::fromLatin1(errorPtr->message);
|
||||
@@ -98,7 +99,7 @@
|
||||
if (!s.isEmpty())
|
||||
errorStr += "<br>" + s;
|
||||
errorStr += TQString("(%1, %2)").arg(errorPtr->line).arg(errorPtr->int2);
|
||||
- xmlResetError(errorPtr);
|
||||
+ xmlResetLastError();
|
||||
}
|
||||
KMessageBox::error(0, i18n("<qt>Error while parsing the DTD.<br>The error message is:<br><i>%1</i></qt>").arg(errorStr));
|
||||
return false;
|
Loading…
Reference in new issue