summaryrefslogtreecommitdiffstats
path: root/qmake
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@nokia.com>2011-09-08 15:44:05 (GMT)
committerJoerg Bornemann <joerg.bornemann@nokia.com>2011-09-08 16:14:37 (GMT)
commit712b1f400ec0a87e9d6c521c1d14548f7359f038 (patch)
treef205b0bb571351b3ceb39cd01b66e8dbea8d2474 /qmake
parent260005374b9b930aa583cd117aba96f8f4b34131 (diff)
downloadQt-712b1f400ec0a87e9d6c521c1d14548f7359f038.zip
Qt-712b1f400ec0a87e9d6c521c1d14548f7359f038.tar.gz
Qt-712b1f400ec0a87e9d6c521c1d14548f7359f038.tar.bz2
qmake vcxproj generator: fix XML conversion for build events
Task-number: QTBUG-20419 Reviewed-by: ossi
Diffstat (limited to 'qmake')
-rw-r--r--qmake/generators/win32/msbuild_objectmodel.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/qmake/generators/win32/msbuild_objectmodel.cpp b/qmake/generators/win32/msbuild_objectmodel.cpp
index f50afc3..0b201b8 100644
--- a/qmake/generators/win32/msbuild_objectmodel.cpp
+++ b/qmake/generators/win32/msbuild_objectmodel.cpp
@@ -1524,8 +1524,8 @@ void VCXProjectWriter::write(XmlOutput &xml, const VCEventTool &tool)
{
xml
<< tag(tool.EventName)
- << attrTagS(_Command, tool.CommandLine.join(vcxCommandSeparator()))
- << attrTagS(_Message, tool.Description)
+ << tag(_Command) << valueTag(tool.CommandLine.join(vcxCommandSeparator()))
+ << tag(_Message) << valueTag(tool.Description)
<< closetag(tool.EventName);
}
608360'>bug_3608360 Tcl is a high-level, general-purpose, interpreted, dynamic programming language. It was designed with the goal of being very simple but powerful.
summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * | back to developmentdgp2006-10-231-0/+15
| | |
| * | Version of ChangeLog for 8.5a5 releasedgp2006-10-231-15/+0
| | |
| * | * generic/tcl.h:Miguel Sofer2006-10-223-72/+24
| | | | | | | | | | | | | | | | | | | | | | | | * generic/tclHash.c: Tcl_FindHashEntry() now calls Tcl_CreateHashEntry() with a newPtr set to NULL: this would have caused a segfault previously and eliminates duplicated code. A macro has been added to tcl.h (only used when TCL_PRESERVE_BINARY_COMPATABALITY is not set - ie, not by default).
| * | fix configurations of 'tests' targetdas2006-10-201-6/+9
| | |
| * | Undo mistaken commit to wrong branch caused by CVS fumble... :-}dkf2006-10-2020-8044/+118
| | |
| * | Consolidated TIP#257 patch applied to HEAD to allow for experimentation bydkf2006-10-2020-118/+8044
| | | | | | | | | | | | other developers
| * | * tools/tcltk-man2html.tcl: add support for alpha & beta versions todas2006-10-202-3/+8
| | | | | | | | | | | | useversion glob pattern. [Bug 1579941]
| * | * unix/configure.in: Added autodetection for OS-supplied timezonermax2006-10-194-4/+118
| | | | | | | | | | | | | | | * unix/Makefile.in: files and configure switches to override the * unix/configure: detected default.
| * | * changes: 8.5a5 release date setdgp2006-10-182-2/+4
| | |
| * | * doc/Encoding.3: Missing doc updates (mostly Table ofdgp2006-10-186-9/+15
| | | | | | | | | | | | | | | | | | | | | * doc/Ensemble.3: Contents) exposed by `make checkdoc` * doc/FileSystem.3: * doc/GetTime.3: * doc/PkgRequire.3:
| * | advance tag for 8.5a5dgp2006-10-181-2/+4
| | |
| * | * generic/tclInterp.c (ApplyObjCmd): fixed bad error in 2006-10-12Miguel Sofer2006-10-172-2/+10
| | | | | | | | | | | | commit: interp released too early. Spotted by mistachkin.
| * | * tclProc.c (SetLambdaFromAny):Miguel Sofer2006-10-163-3/+52
| | | | | | | | | | | | | | | * tests/apply.test (9.1-9.2): plugged intrep leak [Bug 1578454], found by mjanssen.
| * | * unix/tclUnixThrd.c (TclpThreadGetStackSize): Darwin: fix for maindas2006-10-16