# HG changeset patch # User Dremov Kirill (Nokia-D-MSW/Tampere) # Date 1283260424 -10800 # Node ID 44d14dfed84d9546173348e350a5143a0ffb71e9 # Parent 046e2c4dbfd02e906fdaa7a43ffcdc601544bff7 Revision: 201033 Kit: 201035 diff -r 046e2c4dbfd0 -r 44d14dfed84d aknlayoutcompiler/binary/AknLayoutCompiler-vc.exe Binary file aknlayoutcompiler/binary/AknLayoutCompiler-vc.exe has changed diff -r 046e2c4dbfd0 -r 44d14dfed84d aknlayoutcompiler/binary/AknLayoutCompiler.exe Binary file aknlayoutcompiler/binary/AknLayoutCompiler.exe has changed diff -r 046e2c4dbfd0 -r 44d14dfed84d aknlayoutcompiler/group/AknLayoutCompiler.mmp --- a/aknlayoutcompiler/group/AknLayoutCompiler.mmp Thu Jul 15 19:48:16 2010 +0300 +++ b/aknlayoutcompiler/group/AknLayoutCompiler.mmp Tue Aug 31 16:13:44 2010 +0300 @@ -25,7 +25,7 @@ SYSTEMINCLUDE ../../inc SYSTEMINCLUDE ../../toollibraries/arabica/include -SYSTEMINCLUDE ../../toollibraries/xercesc/include +SYSTEMINCLUDE ../../toollibraries/xerces-c/include MW_LAYER_SYSTEMINCLUDE diff -r 046e2c4dbfd0 -r 44d14dfed84d cdlcompiler/binary/CdlCompiler-vc.EXE Binary file cdlcompiler/binary/CdlCompiler-vc.EXE has changed diff -r 046e2c4dbfd0 -r 44d14dfed84d cdlcompiler/binary/CdlCompiler.EXE Binary file cdlcompiler/binary/CdlCompiler.EXE has changed diff -r 046e2c4dbfd0 -r 44d14dfed84d cdlcompiler/group/bld.inf --- a/cdlcompiler/group/bld.inf Thu Jul 15 19:48:16 2010 +0300 +++ b/cdlcompiler/group/bld.inf Tue Aug 31 16:13:44 2010 +0300 @@ -21,21 +21,14 @@ PRJ_EXPORTS -../binary/CdlCompiler.exe /epoc32/tools/CdlCompiler.exe +/* ../binary/CdlCompiler.EXE /epoc32/tools/CdlCompiler.EXE */ PRJ_MMPFILES -#if defined(TOOLS) || defined(CWTOOLS) || defined(TOOLS2) - -/* - * NOTICE! CdlCompiler is not compiled any more during usual build. - * It is just exported from ../binary directory. - * If you really want compile AknLayoutCompiler from sources you need to - * uncomment below line, build this project and copy - * /epoc32/tools/AknLayoutCompiler.exe to ../binary directory and - * put the binary to version control. - */ -// CdlCompiler.mmp +/* FIXME: Can we remove this later ? */ +/* defined(TOOLS) || defined(CWTOOLS) || */ +#if defined(TOOLS2) +CdlCompiler.mmp #endif // End of File diff -r 046e2c4dbfd0 -r 44d14dfed84d package_definition.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/package_definition.xml Tue Aug 31 16:13:44 2010 +0300 @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -r 046e2c4dbfd0 -r 44d14dfed84d package_map.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/package_map.xml Tue Aug 31 16:13:44 2010 +0300 @@ -0,0 +1,1 @@ + diff -r 046e2c4dbfd0 -r 44d14dfed84d reszip/group/bld.inf --- a/reszip/group/bld.inf Thu Jul 15 19:48:16 2010 +0300 +++ b/reszip/group/bld.inf Tue Aug 31 16:13:44 2010 +0300 @@ -25,9 +25,9 @@ PRJ_MMPFILES #ifndef TOOLS - #ifndef TOOLS2 - reszip.mmp - #endif +#ifndef TOOLS2 +reszip.mmp +#endif #endif PRJ_TESTMMPFILES diff -r 046e2c4dbfd0 -r 44d14dfed84d reszip/inc/rescomp.h --- a/reszip/inc/rescomp.h Thu Jul 15 19:48:16 2010 +0300 +++ b/reszip/inc/rescomp.h Tue Aug 31 16:13:44 2010 +0300 @@ -59,7 +59,7 @@ void LoadUnCompressedFileL(RFs& aFs, const TDesC& aName); TBool FileIsBAFLCompressedL(RFs& aFs, const TDesC& aName); - void OptimizeDictL(); + void OptimizeDict(); void FindEmbeddedDict(TDesC8& aMatch, TInt aStart); void WriteHeaderL(RWriteStream& aStream); void WriteDictionaryL(RWriteStream& aStream); diff -r 046e2c4dbfd0 -r 44d14dfed84d reszip/inc/resdict.h --- a/reszip/inc/resdict.h Thu Jul 15 19:48:16 2010 +0300 +++ b/reszip/inc/resdict.h Tue Aug 31 16:13:44 2010 +0300 @@ -37,7 +37,7 @@ TInt Saved(); TDesC8& Data(); TInt Use(); - void CreateEmbeddedDictL(TInt aDictIndex,CDictArray* aDict); + void CreateEmbeddedDict(TInt aDictIndex,CDictArray* aDict); public: TBufC8 iData; TInt iUses; diff -r 046e2c4dbfd0 -r 44d14dfed84d reszip/src/rescomp.cpp --- a/reszip/src/rescomp.cpp Thu Jul 15 19:48:16 2010 +0300 +++ b/reszip/src/rescomp.cpp Tue Aug 31 16:13:44 2010 +0300 @@ -426,7 +426,7 @@ // Optimize Dictionary - OptimizeDictL(); + OptimizeDict(); // Compress using optimized dictionary @@ -527,7 +527,7 @@ -void CResComp::OptimizeDictL() +void CResComp::OptimizeDict() { // Find referenced dicts TInt entries = iDict->Count(); @@ -565,7 +565,7 @@ for (TInt zz=0; zzAt(zz).CreateEmbeddedDictL(zz, iDict); + iDict->At(zz).CreateEmbeddedDict(zz, iDict); } } diff -r 046e2c4dbfd0 -r 44d14dfed84d reszip/src/resdict.cpp --- a/reszip/src/resdict.cpp Thu Jul 15 19:48:16 2010 +0300 +++ b/reszip/src/resdict.cpp Tue Aug 31 16:13:44 2010 +0300 @@ -48,7 +48,7 @@ } -void TDictEntry::CreateEmbeddedDictL(TInt aDictIndex,CDictArray* aDict) +void TDictEntry::CreateEmbeddedDict(TInt aDictIndex,CDictArray* aDict) { // Create list of embedded dictionary strings iEmbedded = new(ELeave)CResEntry(aDict); diff -r 046e2c4dbfd0 -r 44d14dfed84d svgtencoder/svgtenc/standalone/binary/svgtbinencode.exe Binary file svgtencoder/svgtenc/standalone/binary/svgtbinencode.exe has changed diff -r 046e2c4dbfd0 -r 44d14dfed84d svgtencoder/svgtenc/standalone/group/bld.inf --- a/svgtencoder/svgtenc/standalone/group/bld.inf Thu Jul 15 19:48:16 2010 +0300 +++ b/svgtencoder/svgtenc/standalone/group/bld.inf Tue Aug 31 16:13:44 2010 +0300 @@ -30,8 +30,8 @@ //START TOOLS //#if defined(TOOLS) ../binary/svgtbinencode.exe /epoc32/tools/svgtbinencode.exe + ../binary/xerces-c_2_6.dll /epoc32/tools/xerces-c_2_6.dll ../binary/svgtbinencode /epoc32/tools/svgtbinencode - ../binary/xerces-c_2_6.dll /epoc32/tools/xerces-c_2_6.dll // For Windows abld Support "Link with dynamic xerces-c.2.8.0" //../lib_win/xerces-c_2.lib /epoc32/release/tools/rel/xerces-c_2.lib //../lib_win/xerces-c_2.lib /epoc32/release/tools/deb/xerces-c_2.lib diff -r 046e2c4dbfd0 -r 44d14dfed84d uitools_info/nokia_uitools_metadata/package_definition.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/uitools_info/nokia_uitools_metadata/package_definition.xml Tue Aug 31 16:13:44 2010 +0300 @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff -r 046e2c4dbfd0 -r 44d14dfed84d uitools_plat/cdl_api/inc/CdlCompilerToolkit/CdlCompat.h --- a/uitools_plat/cdl_api/inc/CdlCompilerToolkit/CdlCompat.h Thu Jul 15 19:48:16 2010 +0300 +++ b/uitools_plat/cdl_api/inc/CdlCompilerToolkit/CdlCompat.h Tue Aug 31 16:13:44 2010 +0300 @@ -1,20 +1,3 @@ -/* -* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). -* All rights reserved. -* This component and the accompanying materials are made available -* under the terms of "Eclipse Public License v1.0" -* which accompanies this distribution, and is available -* at the URL "http://www.eclipse.org/legal/epl-v10.html". -* -* Initial Contributors: -* Nokia Corporation - initial contribution. -* -* Contributors: -* -* Description: -* -*/ - // Cdlcompat.h #ifndef CDLCOMPAT_H