diff --git a/kpdf/Makefile.am b/kpdf/Makefile.am index 187989f7..270bc883 100644 --- a/kpdf/Makefile.am +++ b/kpdf/Makefile.am @@ -6,7 +6,7 @@ METASOURCES = AUTO messages: rc.cpp $(EXTRACTRC) `find . -name "*.rc" -o -name "*.ui"` >> rc.cpp - $(XGETTEXT) `find . -name "*.cpp" -o -name "*.cc" -o -name "*.h"` -o $(podir)/kpdf.pot + $(XGETTEXT) `find . -name "*.cpp" -o -name "*.h"` -o $(podir)/kpdf.pot KDE_ICON = kpdf diff --git a/kpdf/TODO b/kpdf/TODO index d917fd1d..53f0cc17 100644 --- a/kpdf/TODO +++ b/kpdf/TODO @@ -46,7 +46,7 @@ More items (first items will enter 'In progress list' first): -> take care of TODOs in code -> ADD: click over image allows "save image" [60% done (activerect of type image)] -> export all text in plain_text/html --> extract(export?) images (have a look at ImageOutputDev.cc and pdfimages.cc from xpdf (not in our xpdf sources)) +-> extract(export?) images (have a look at ImageOutputDev.cpp and pdfimages.cpp from xpdf (not in our xpdf sources)) -> text selection in wordprocessor style (very hard) -> zoom: fit text (with configurable margin) -> bookview: 3d opengl widget for viewing the document as a real book (turning pages, etc..) diff --git a/kpdf/core/generator_pdf/generator_pdf.cpp b/kpdf/core/generator_pdf/generator_pdf.cpp index 5c0046d3..08578a8e 100644 --- a/kpdf/core/generator_pdf/generator_pdf.cpp +++ b/kpdf/core/generator_pdf/generator_pdf.cpp @@ -778,7 +778,7 @@ void PDFGenerator::scanFont(GfxFont *font, TDEListView *list, Ref **fonts, int & TQString PDFGenerator::getDocumentInfo( const TQString & data, bool canReturnNull ) const // note: MUTEX is LOCKED while calling this { - // [Albert] Code adapted from pdfinfo.cc on xpdf + // [Albert] Code adapted from pdfinfo.cpp on xpdf Object info; if ( !pdfdoc ) return canReturnNull ? TQString() : i18n( "Unknown" ); @@ -805,7 +805,7 @@ TQString PDFGenerator::getDocumentInfo( const TQString & data, bool canReturnNul TQString PDFGenerator::getDocumentDate( const TQString & data ) const // note: MUTEX is LOCKED while calling this { - // [Albert] Code adapted from pdfinfo.cc on xpdf + // [Albert] Code adapted from pdfinfo.cpp on xpdf if ( !pdfdoc ) return i18n( "Unknown Date" ); diff --git a/kpdf/ui/pageview.cpp b/kpdf/ui/pageview.cpp index 556512de..88f599d6 100644 --- a/kpdf/ui/pageview.cpp +++ b/kpdf/ui/pageview.cpp @@ -2,7 +2,7 @@ * Copyright (C) 2004 by Enrico Ros * * Copyright (C) 2004-2006 by Albert Astals Cid * * * - * With portions of code from kpdf/kpdf_pagewidget.cc by: * + * With portions of code from kpdf/kpdf_pagewidget.cpp by: * * Copyright (C) 2002 by Wilco Greven * * Copyright (C) 2003 by Christophe Devriese * * * diff --git a/kpdf/xpdf/fofi/CMakeLists.txt b/kpdf/xpdf/fofi/CMakeLists.txt index e98957f3..2f983315 100644 --- a/kpdf/xpdf/fofi/CMakeLists.txt +++ b/kpdf/xpdf/fofi/CMakeLists.txt @@ -21,6 +21,6 @@ include_directories( tde_add_library( fofi STATIC_PIC SOURCES - FoFiBase.cc FoFiEncodings.cc FoFiTrueType.cc FoFiType1.cc - FoFiType1C.cc + FoFiBase.cpp FoFiEncodings.cpp FoFiTrueType.cpp FoFiType1.cpp + FoFiType1C.cpp ) diff --git a/kpdf/xpdf/fofi/FoFiBase.cc b/kpdf/xpdf/fofi/FoFiBase.cpp similarity index 99% rename from kpdf/xpdf/fofi/FoFiBase.cc rename to kpdf/xpdf/fofi/FoFiBase.cpp index 28d0b8ca..af6fe112 100644 --- a/kpdf/xpdf/fofi/FoFiBase.cc +++ b/kpdf/xpdf/fofi/FoFiBase.cpp @@ -1,6 +1,6 @@ //======================================================================== // -// FoFiBase.cc +// FoFiBase.cpp // // Copyright 1999-2003 Glyph & Cog, LLC // diff --git a/kpdf/xpdf/fofi/FoFiEncodings.cc b/kpdf/xpdf/fofi/FoFiEncodings.cpp similarity index 99% rename from kpdf/xpdf/fofi/FoFiEncodings.cc rename to kpdf/xpdf/fofi/FoFiEncodings.cpp index 37a17f5d..3c0d39a3 100644 --- a/kpdf/xpdf/fofi/FoFiEncodings.cc +++ b/kpdf/xpdf/fofi/FoFiEncodings.cpp @@ -1,6 +1,6 @@ //======================================================================== // -// FoFiEncodings.cc +// FoFiEncodings.cpp // // Copyright 1999-2003 Glyph & Cog, LLC // diff --git a/kpdf/xpdf/fofi/FoFiTrueType.cc b/kpdf/xpdf/fofi/FoFiTrueType.cpp similarity index 99% rename from kpdf/xpdf/fofi/FoFiTrueType.cc rename to kpdf/xpdf/fofi/FoFiTrueType.cpp index a205a068..18253335 100644 --- a/kpdf/xpdf/fofi/FoFiTrueType.cc +++ b/kpdf/xpdf/fofi/FoFiTrueType.cpp @@ -1,6 +1,6 @@ //======================================================================== // -// FoFiTrueType.cc +// FoFiTrueType.cpp // // Copyright 1999-2003 Glyph & Cog, LLC // diff --git a/kpdf/xpdf/fofi/FoFiType1.cc b/kpdf/xpdf/fofi/FoFiType1.cpp similarity index 99% rename from kpdf/xpdf/fofi/FoFiType1.cc rename to kpdf/xpdf/fofi/FoFiType1.cpp index 88b35ecc..f6e676a2 100644 --- a/kpdf/xpdf/fofi/FoFiType1.cc +++ b/kpdf/xpdf/fofi/FoFiType1.cpp @@ -1,6 +1,6 @@ //======================================================================== // -// FoFiType1.cc +// FoFiType1.cpp // // Copyright 1999-2003 Glyph & Cog, LLC // diff --git a/kpdf/xpdf/fofi/FoFiType1C.cc b/kpdf/xpdf/fofi/FoFiType1C.cpp similarity index 99% rename from kpdf/xpdf/fofi/FoFiType1C.cc rename to kpdf/xpdf/fofi/FoFiType1C.cpp index 3b28f321..f2ca88dc 100644 --- a/kpdf/xpdf/fofi/FoFiType1C.cc +++ b/kpdf/xpdf/fofi/FoFiType1C.cpp @@ -1,6 +1,6 @@ //======================================================================== // -// FoFiType1C.cc +// FoFiType1C.cpp // // Copyright 1999-2003 Glyph & Cog, LLC // diff --git a/kpdf/xpdf/fofi/Makefile.am b/kpdf/xpdf/fofi/Makefile.am index 7ca93922..9a1ec4aa 100644 --- a/kpdf/xpdf/fofi/Makefile.am +++ b/kpdf/xpdf/fofi/Makefile.am @@ -1,8 +1,8 @@ INCLUDES = -I$(srcdir)/.. -I$(srcdir)/../goo $(all_includes) libfofi_la_LDFLAGS = $(all_libraries) -libfofi_la_SOURCES = FoFiBase.cc FoFiEncodings.cc FoFiTrueType.cc \ - FoFiType1.cc FoFiType1C.cc +libfofi_la_SOURCES = FoFiBase.cpp FoFiEncodings.cpp FoFiTrueType.cpp \ + FoFiType1.cpp FoFiType1C.cpp METASOURCES = AUTO diff --git a/kpdf/xpdf/goo/CMakeLists.txt b/kpdf/xpdf/goo/CMakeLists.txt index 5a5a0ac8..dd6dc2d1 100644 --- a/kpdf/xpdf/goo/CMakeLists.txt +++ b/kpdf/xpdf/goo/CMakeLists.txt @@ -22,5 +22,5 @@ include_directories( tde_add_library( goo STATIC_PIC SOURCES - GHash.cc GList.cc GString.cc gfile.cc gmem.cc gmempp.cc + GHash.cpp GList.cpp GString.cpp gfile.cpp gmem.cpp gmempp.cpp ) diff --git a/kpdf/xpdf/goo/GHash.cc b/kpdf/xpdf/goo/GHash.cpp similarity index 99% rename from kpdf/xpdf/goo/GHash.cc rename to kpdf/xpdf/goo/GHash.cpp index b51a7643..f642a261 100644 --- a/kpdf/xpdf/goo/GHash.cc +++ b/kpdf/xpdf/goo/GHash.cpp @@ -1,6 +1,6 @@ //======================================================================== // -// GHash.cc +// GHash.cpp // // Copyright 2001-2003 Glyph & Cog, LLC // diff --git a/kpdf/xpdf/goo/GList.cc b/kpdf/xpdf/goo/GList.cpp similarity index 99% rename from kpdf/xpdf/goo/GList.cc rename to kpdf/xpdf/goo/GList.cpp index fb5fd628..2a4e4695 100644 --- a/kpdf/xpdf/goo/GList.cc +++ b/kpdf/xpdf/goo/GList.cpp @@ -1,6 +1,6 @@ //======================================================================== // -// GList.cc +// GList.cpp // // Copyright 2001-2003 Glyph & Cog, LLC // diff --git a/kpdf/xpdf/goo/GString.cc b/kpdf/xpdf/goo/GString.cpp similarity index 99% rename from kpdf/xpdf/goo/GString.cc rename to kpdf/xpdf/goo/GString.cpp index e21fd3ea..89f122e1 100644 --- a/kpdf/xpdf/goo/GString.cc +++ b/kpdf/xpdf/goo/GString.cpp @@ -1,6 +1,6 @@ //======================================================================== // -// GString.cc +// GString.cpp // // Simple variable-length string type. // diff --git a/kpdf/xpdf/goo/Makefile.am b/kpdf/xpdf/goo/Makefile.am index 04933cee..00ffad0d 100644 --- a/kpdf/xpdf/goo/Makefile.am +++ b/kpdf/xpdf/goo/Makefile.am @@ -1,5 +1,5 @@ INCLUDES = -I$(srcdir)/.. -libgoo_la_SOURCES = GHash.cc GList.cc GString.cc gfile.cc gmem.cc gmempp.cc +libgoo_la_SOURCES = GHash.cpp GList.cpp GString.cpp gfile.cpp gmem.cpp gmempp.cpp noinst_LTLIBRARIES = libgoo.la diff --git a/kpdf/xpdf/goo/gfile.cc b/kpdf/xpdf/goo/gfile.cpp similarity index 99% rename from kpdf/xpdf/goo/gfile.cc rename to kpdf/xpdf/goo/gfile.cpp index 54a7be3d..bb75b855 100644 --- a/kpdf/xpdf/goo/gfile.cc +++ b/kpdf/xpdf/goo/gfile.cpp @@ -1,6 +1,6 @@ //======================================================================== // -// gfile.cc +// gfile.cpp // // Miscellaneous file and directory name manipulation. // diff --git a/kpdf/xpdf/goo/gmem.cc b/kpdf/xpdf/goo/gmem.cpp similarity index 100% rename from kpdf/xpdf/goo/gmem.cc rename to kpdf/xpdf/goo/gmem.cpp diff --git a/kpdf/xpdf/goo/gmempp.cc b/kpdf/xpdf/goo/gmempp.cpp similarity index 97% rename from kpdf/xpdf/goo/gmempp.cc rename to kpdf/xpdf/goo/gmempp.cpp index b1ee970d..4804889b 100644 --- a/kpdf/xpdf/goo/gmempp.cc +++ b/kpdf/xpdf/goo/gmempp.cpp @@ -1,6 +1,6 @@ //======================================================================== // -// gmempp.cc +// gmempp.cpp // // Use gmalloc/gfree for C++ new/delete operators. // diff --git a/kpdf/xpdf/splash/CMakeLists.txt b/kpdf/xpdf/splash/CMakeLists.txt index 650debba..a9c3d72b 100644 --- a/kpdf/xpdf/splash/CMakeLists.txt +++ b/kpdf/xpdf/splash/CMakeLists.txt @@ -23,11 +23,11 @@ include_directories( tde_add_library( splash STATIC_PIC SOURCES - Splash.cc SplashBitmap.cc SplashClip.cc SplashFTFont.cc - SplashFTFontEngine.cc SplashFTFontFile.cc SplashFont.cc - SplashFontEngine.cc SplashFontFile.cc SplashFontFileID.cc - SplashPath.cc SplashPattern.cc SplashScreen.cc SplashState.cc - SplashT1Font.cc SplashT1FontEngine.cc SplashT1FontFile.cc - SplashXPath.cc SplashXPathScanner.cc + Splash.cpp SplashBitmap.cpp SplashClip.cpp SplashFTFont.cpp + SplashFTFontEngine.cpp SplashFTFontFile.cpp SplashFont.cpp + SplashFontEngine.cpp SplashFontFile.cpp SplashFontFileID.cpp + SplashPath.cpp SplashPattern.cpp SplashScreen.cpp SplashState.cpp + SplashT1Font.cpp SplashT1FontEngine.cpp SplashT1FontFile.cpp + SplashXPath.cpp SplashXPathScanner.cpp LINK ${FREETYPE_LIBRARIES} ${FONTCONFIG_LIBRARIES} ) diff --git a/kpdf/xpdf/splash/Makefile.am b/kpdf/xpdf/splash/Makefile.am index 34d41419..724eaa6a 100644 --- a/kpdf/xpdf/splash/Makefile.am +++ b/kpdf/xpdf/splash/Makefile.am @@ -1,8 +1,8 @@ INCLUDES = -I$(srcdir)/.. -I$(srcdir)/../fofi -I$(srcdir)/../goo $(LIBFREETYPE_CFLAGS) $(USER_INCLUDES) -libsplash_la_SOURCES = Splash.cc SplashBitmap.cc SplashClip.cc SplashFTFont.cc SplashFTFontEngine.cc \ - SplashFTFontFile.cc SplashFont.cc SplashFontEngine.cc SplashFontFile.cc SplashFontFileID.cc \ - SplashPath.cc SplashPattern.cc SplashScreen.cc SplashState.cc SplashT1Font.cc \ - SplashT1FontEngine.cc SplashT1FontFile.cc SplashXPath.cc SplashXPathScanner.cc +libsplash_la_SOURCES = Splash.cpp SplashBitmap.cpp SplashClip.cpp SplashFTFont.cpp SplashFTFontEngine.cpp \ + SplashFTFontFile.cpp SplashFont.cpp SplashFontEngine.cpp SplashFontFile.cpp SplashFontFileID.cpp \ + SplashPath.cpp SplashPattern.cpp SplashScreen.cpp SplashState.cpp SplashT1Font.cpp \ + SplashT1FontEngine.cpp SplashT1FontFile.cpp SplashXPath.cpp SplashXPathScanner.cpp noinst_LTLIBRARIES = libsplash.la diff --git a/kpdf/xpdf/splash/Splash.cc b/kpdf/xpdf/splash/Splash.cpp similarity index 99% rename from kpdf/xpdf/splash/Splash.cc rename to kpdf/xpdf/splash/Splash.cpp index 2b91e4e7..2cfc1ee2 100644 --- a/kpdf/xpdf/splash/Splash.cc +++ b/kpdf/xpdf/splash/Splash.cpp @@ -1,6 +1,6 @@ //======================================================================== // -// Splash.cc +// Splash.cpp // //======================================================================== diff --git a/kpdf/xpdf/splash/SplashBitmap.cc b/kpdf/xpdf/splash/SplashBitmap.cpp similarity index 99% rename from kpdf/xpdf/splash/SplashBitmap.cc rename to kpdf/xpdf/splash/SplashBitmap.cpp index 62bbd8e8..5b5d28d1 100644 --- a/kpdf/xpdf/splash/SplashBitmap.cc +++ b/kpdf/xpdf/splash/SplashBitmap.cpp @@ -1,6 +1,6 @@ //======================================================================== // -// SplashBitmap.cc +// SplashBitmap.cpp // //======================================================================== diff --git a/kpdf/xpdf/splash/SplashClip.cc b/kpdf/xpdf/splash/SplashClip.cpp similarity index 99% rename from kpdf/xpdf/splash/SplashClip.cc rename to kpdf/xpdf/splash/SplashClip.cpp index ef8acbab..ba03b7a4 100644 --- a/kpdf/xpdf/splash/SplashClip.cc +++ b/kpdf/xpdf/splash/SplashClip.cpp @@ -1,6 +1,6 @@ //======================================================================== // -// SplashClip.cc +// SplashClip.cpp // //======================================================================== diff --git a/kpdf/xpdf/splash/SplashFTFont.cc b/kpdf/xpdf/splash/SplashFTFont.cpp similarity index 99% rename from kpdf/xpdf/splash/SplashFTFont.cc rename to kpdf/xpdf/splash/SplashFTFont.cpp index 42d92af4..4bc31210 100644 --- a/kpdf/xpdf/splash/SplashFTFont.cc +++ b/kpdf/xpdf/splash/SplashFTFont.cpp @@ -1,6 +1,6 @@ //======================================================================== // -// SplashFTFont.cc +// SplashFTFont.cpp // //======================================================================== diff --git a/kpdf/xpdf/splash/SplashFTFontEngine.cc b/kpdf/xpdf/splash/SplashFTFontEngine.cpp similarity index 99% rename from kpdf/xpdf/splash/SplashFTFontEngine.cc rename to kpdf/xpdf/splash/SplashFTFontEngine.cpp index 02996de7..36cf32e6 100644 --- a/kpdf/xpdf/splash/SplashFTFontEngine.cc +++ b/kpdf/xpdf/splash/SplashFTFontEngine.cpp @@ -1,6 +1,6 @@ //======================================================================== // -// SplashFTFontEngine.cc +// SplashFTFontEngine.cpp // //======================================================================== diff --git a/kpdf/xpdf/splash/SplashFTFontFile.cc b/kpdf/xpdf/splash/SplashFTFontFile.cpp similarity index 99% rename from kpdf/xpdf/splash/SplashFTFontFile.cc rename to kpdf/xpdf/splash/SplashFTFontFile.cpp index 12725497..697c3ed8 100644 --- a/kpdf/xpdf/splash/SplashFTFontFile.cc +++ b/kpdf/xpdf/splash/SplashFTFontFile.cpp @@ -1,6 +1,6 @@ //======================================================================== // -// SplashFTFontFile.cc +// SplashFTFontFile.cpp // //======================================================================== diff --git a/kpdf/xpdf/splash/SplashFont.cc b/kpdf/xpdf/splash/SplashFont.cpp similarity index 99% rename from kpdf/xpdf/splash/SplashFont.cc rename to kpdf/xpdf/splash/SplashFont.cpp index 4a91d5e8..42c9e999 100644 --- a/kpdf/xpdf/splash/SplashFont.cc +++ b/kpdf/xpdf/splash/SplashFont.cpp @@ -1,6 +1,6 @@ //======================================================================== // -// SplashFont.cc +// SplashFont.cpp // //======================================================================== diff --git a/kpdf/xpdf/splash/SplashFontEngine.cc b/kpdf/xpdf/splash/SplashFontEngine.cpp similarity index 99% rename from kpdf/xpdf/splash/SplashFontEngine.cc rename to kpdf/xpdf/splash/SplashFontEngine.cpp index 4dc1b35b..d79a48a0 100644 --- a/kpdf/xpdf/splash/SplashFontEngine.cc +++ b/kpdf/xpdf/splash/SplashFontEngine.cpp @@ -1,6 +1,6 @@ //======================================================================== // -// SplashFontEngine.cc +// SplashFontEngine.cpp // //======================================================================== diff --git a/kpdf/xpdf/splash/SplashFontFile.cc b/kpdf/xpdf/splash/SplashFontFile.cpp similarity index 98% rename from kpdf/xpdf/splash/SplashFontFile.cc rename to kpdf/xpdf/splash/SplashFontFile.cpp index ad58c22d..c66447bb 100644 --- a/kpdf/xpdf/splash/SplashFontFile.cc +++ b/kpdf/xpdf/splash/SplashFontFile.cpp @@ -1,6 +1,6 @@ //======================================================================== // -// SplashFontFile.cc +// SplashFontFile.cpp // //======================================================================== diff --git a/kpdf/xpdf/splash/SplashFontFileID.cc b/kpdf/xpdf/splash/SplashFontFileID.cpp similarity index 95% rename from kpdf/xpdf/splash/SplashFontFileID.cc rename to kpdf/xpdf/splash/SplashFontFileID.cpp index af37cb2f..9182d4d8 100644 --- a/kpdf/xpdf/splash/SplashFontFileID.cc +++ b/kpdf/xpdf/splash/SplashFontFileID.cpp @@ -1,6 +1,6 @@ //======================================================================== // -// SplashFontFileID.cc +// SplashFontFileID.cpp // //======================================================================== diff --git a/kpdf/xpdf/splash/SplashPath.cc b/kpdf/xpdf/splash/SplashPath.cpp similarity index 99% rename from kpdf/xpdf/splash/SplashPath.cc rename to kpdf/xpdf/splash/SplashPath.cpp index e3a89271..4a3c334c 100644 --- a/kpdf/xpdf/splash/SplashPath.cc +++ b/kpdf/xpdf/splash/SplashPath.cpp @@ -1,6 +1,6 @@ //======================================================================== // -// SplashPath.cc +// SplashPath.cpp // //======================================================================== diff --git a/kpdf/xpdf/splash/SplashPattern.cc b/kpdf/xpdf/splash/SplashPattern.cpp similarity index 97% rename from kpdf/xpdf/splash/SplashPattern.cc rename to kpdf/xpdf/splash/SplashPattern.cpp index e6a37852..2aa4f70f 100644 --- a/kpdf/xpdf/splash/SplashPattern.cc +++ b/kpdf/xpdf/splash/SplashPattern.cpp @@ -1,6 +1,6 @@ //======================================================================== // -// SplashPattern.cc +// SplashPattern.cpp // //======================================================================== diff --git a/kpdf/xpdf/splash/SplashScreen.cc b/kpdf/xpdf/splash/SplashScreen.cpp similarity index 99% rename from kpdf/xpdf/splash/SplashScreen.cc rename to kpdf/xpdf/splash/SplashScreen.cpp index 3e8d36ca..a1f50c0a 100644 --- a/kpdf/xpdf/splash/SplashScreen.cc +++ b/kpdf/xpdf/splash/SplashScreen.cpp @@ -1,6 +1,6 @@ //======================================================================== // -// SplashScreen.cc +// SplashScreen.cpp // //======================================================================== diff --git a/kpdf/xpdf/splash/SplashState.cc b/kpdf/xpdf/splash/SplashState.cpp similarity index 99% rename from kpdf/xpdf/splash/SplashState.cc rename to kpdf/xpdf/splash/SplashState.cpp index e2c34c44..17445ad7 100644 --- a/kpdf/xpdf/splash/SplashState.cc +++ b/kpdf/xpdf/splash/SplashState.cpp @@ -1,6 +1,6 @@ //======================================================================== // -// SplashState.cc +// SplashState.cpp // //======================================================================== diff --git a/kpdf/xpdf/splash/SplashT1Font.cc b/kpdf/xpdf/splash/SplashT1Font.cpp similarity index 99% rename from kpdf/xpdf/splash/SplashT1Font.cc rename to kpdf/xpdf/splash/SplashT1Font.cpp index 19237e1d..17dfcd78 100644 --- a/kpdf/xpdf/splash/SplashT1Font.cc +++ b/kpdf/xpdf/splash/SplashT1Font.cpp @@ -1,6 +1,6 @@ //======================================================================== // -// SplashT1Font.cc +// SplashT1Font.cpp // //======================================================================== diff --git a/kpdf/xpdf/splash/SplashT1FontEngine.cc b/kpdf/xpdf/splash/SplashT1FontEngine.cpp similarity index 99% rename from kpdf/xpdf/splash/SplashT1FontEngine.cc rename to kpdf/xpdf/splash/SplashT1FontEngine.cpp index 68530e88..d17dc47c 100644 --- a/kpdf/xpdf/splash/SplashT1FontEngine.cc +++ b/kpdf/xpdf/splash/SplashT1FontEngine.cpp @@ -1,6 +1,6 @@ //======================================================================== // -// SplashT1FontEngine.cc +// SplashT1FontEngine.cpp // //======================================================================== diff --git a/kpdf/xpdf/splash/SplashT1FontFile.cc b/kpdf/xpdf/splash/SplashT1FontFile.cpp similarity index 99% rename from kpdf/xpdf/splash/SplashT1FontFile.cc rename to kpdf/xpdf/splash/SplashT1FontFile.cpp index 54312055..b9f3ed3c 100644 --- a/kpdf/xpdf/splash/SplashT1FontFile.cc +++ b/kpdf/xpdf/splash/SplashT1FontFile.cpp @@ -1,6 +1,6 @@ //======================================================================== // -// SplashT1FontFile.cc +// SplashT1FontFile.cpp // //======================================================================== diff --git a/kpdf/xpdf/splash/SplashTypes.h b/kpdf/xpdf/splash/SplashTypes.h index 35551b90..aa431b78 100644 --- a/kpdf/xpdf/splash/SplashTypes.h +++ b/kpdf/xpdf/splash/SplashTypes.h @@ -48,7 +48,7 @@ enum SplashColorMode { }; // number of components in each color mode -// (defined in SplashState.cc) +// (defined in SplashState.cpp) extern int splashColorModeNComps[]; // max number of components in any SplashColor diff --git a/kpdf/xpdf/splash/SplashXPath.cc b/kpdf/xpdf/splash/SplashXPath.cpp similarity index 99% rename from kpdf/xpdf/splash/SplashXPath.cc rename to kpdf/xpdf/splash/SplashXPath.cpp index 71481eff..267643bb 100644 --- a/kpdf/xpdf/splash/SplashXPath.cc +++ b/kpdf/xpdf/splash/SplashXPath.cpp @@ -1,6 +1,6 @@ //======================================================================== // -// SplashXPath.cc +// SplashXPath.cpp // //======================================================================== diff --git a/kpdf/xpdf/splash/SplashXPathScanner.cc b/kpdf/xpdf/splash/SplashXPathScanner.cpp similarity index 99% rename from kpdf/xpdf/splash/SplashXPathScanner.cc rename to kpdf/xpdf/splash/SplashXPathScanner.cpp index 97e5a9bc..8c7d505a 100644 --- a/kpdf/xpdf/splash/SplashXPathScanner.cc +++ b/kpdf/xpdf/splash/SplashXPathScanner.cpp @@ -1,6 +1,6 @@ //======================================================================== // -// SplashXPathScanner.cc +// SplashXPathScanner.cpp // //======================================================================== diff --git a/kpdf/xpdf/xpdf/Annot.cc b/kpdf/xpdf/xpdf/Annot.cpp similarity index 99% rename from kpdf/xpdf/xpdf/Annot.cc rename to kpdf/xpdf/xpdf/Annot.cpp index 23df25df..10d3ce73 100644 --- a/kpdf/xpdf/xpdf/Annot.cc +++ b/kpdf/xpdf/xpdf/Annot.cpp @@ -1,6 +1,6 @@ //======================================================================== // -// Annot.cc +// Annot.cpp // // Copyright 2000-2003 Glyph & Cog, LLC // diff --git a/kpdf/xpdf/xpdf/Array.cc b/kpdf/xpdf/xpdf/Array.cpp similarity index 99% rename from kpdf/xpdf/xpdf/Array.cc rename to kpdf/xpdf/xpdf/Array.cpp index 8232037b..7c54605a 100644 --- a/kpdf/xpdf/xpdf/Array.cc +++ b/kpdf/xpdf/xpdf/Array.cpp @@ -1,6 +1,6 @@ //======================================================================== // -// Array.cc +// Array.cpp // // Copyright 1996-2003 Glyph & Cog, LLC // diff --git a/kpdf/xpdf/xpdf/BuiltinFont.cc b/kpdf/xpdf/xpdf/BuiltinFont.cpp similarity index 98% rename from kpdf/xpdf/xpdf/BuiltinFont.cc rename to kpdf/xpdf/xpdf/BuiltinFont.cpp index ce989571..6e9d2375 100644 --- a/kpdf/xpdf/xpdf/BuiltinFont.cc +++ b/kpdf/xpdf/xpdf/BuiltinFont.cpp @@ -1,6 +1,6 @@ //======================================================================== // -// BuiltinFont.cc +// BuiltinFont.cpp // // Copyright 2001-2003 Glyph & Cog, LLC // diff --git a/kpdf/xpdf/xpdf/BuiltinFontTables.cc b/kpdf/xpdf/xpdf/BuiltinFontTables.cpp similarity index 99% rename from kpdf/xpdf/xpdf/BuiltinFontTables.cc rename to kpdf/xpdf/xpdf/BuiltinFontTables.cpp index 9c362389..9779946f 100644 --- a/kpdf/xpdf/xpdf/BuiltinFontTables.cc +++ b/kpdf/xpdf/xpdf/BuiltinFontTables.cpp @@ -1,6 +1,6 @@ //======================================================================== // -// BuiltinFontTables.cc +// BuiltinFontTables.cpp // // Copyright 2001-2003 Glyph & Cog, LLC // diff --git a/kpdf/xpdf/xpdf/CMakeLists.txt b/kpdf/xpdf/xpdf/CMakeLists.txt index db01bb97..bf9f329c 100644 --- a/kpdf/xpdf/xpdf/CMakeLists.txt +++ b/kpdf/xpdf/xpdf/CMakeLists.txt @@ -24,14 +24,14 @@ include_directories( tde_add_library( xpdf STATIC_PIC SOURCES - Annot.cc Array.cc BuiltinFont.cc BuiltinFontTables.cc - Catalog.cc CharCodeToUnicode.cc CMap.cc Decrypt.cc Dict.cc - FontEncodingTables.cc Function.cc Gfx.cc GfxFont.cc GfxState.cc - GlobalParams.cc JArithmeticDecoder.cc JBIG2Stream.cc Lexer.cc Link.cc - NameToCharCode.cc Object.cc Outline.cc OutputDev.cc PDFDoc.cc - PDFDocEncoding.cc PreScanOutputDev.cc PSTokenizer.cc Page.cc - Parser.cc PSOutputDev.cc SecurityHandler.cc SplashOutputDev.cc - Stream.cc JPXStream.cc TextOutputDev.cc UnicodeMap.cc - UnicodeTypeTable.cc XRef.cc + Annot.cpp Array.cpp BuiltinFont.cpp BuiltinFontTables.cpp + Catalog.cpp CharCodeToUnicode.cpp CMap.cpp Decrypt.cpp Dict.cpp + FontEncodingTables.cpp Function.cpp Gfx.cpp GfxFont.cpp GfxState.cpp + GlobalParams.cpp JArithmeticDecoder.cpp JBIG2Stream.cpp Lexer.cpp Link.cpp + NameToCharCode.cpp Object.cpp Outline.cpp OutputDev.cpp PDFDoc.cpp + PDFDocEncoding.cpp PreScanOutputDev.cpp PSTokenizer.cpp Page.cpp + Parser.cpp PSOutputDev.cpp SecurityHandler.cpp SplashOutputDev.cpp + Stream.cpp JPXStream.cpp TextOutputDev.cpp UnicodeMap.cpp + UnicodeTypeTable.cpp XRef.cpp LINK ${FONTCONFIG_LIBRARIES} ) diff --git a/kpdf/xpdf/xpdf/CMap.cc b/kpdf/xpdf/xpdf/CMap.cpp similarity index 99% rename from kpdf/xpdf/xpdf/CMap.cc rename to kpdf/xpdf/xpdf/CMap.cpp index 89905a8c..dfad915f 100644 --- a/kpdf/xpdf/xpdf/CMap.cc +++ b/kpdf/xpdf/xpdf/CMap.cpp @@ -1,6 +1,6 @@ //======================================================================== // -// CMap.cc +// CMap.cpp // // Copyright 2001-2003 Glyph & Cog, LLC // diff --git a/kpdf/xpdf/xpdf/Catalog.cc b/kpdf/xpdf/xpdf/Catalog.cpp similarity index 99% rename from kpdf/xpdf/xpdf/Catalog.cc rename to kpdf/xpdf/xpdf/Catalog.cpp index 198703a4..ce64af09 100644 --- a/kpdf/xpdf/xpdf/Catalog.cc +++ b/kpdf/xpdf/xpdf/Catalog.cpp @@ -1,6 +1,6 @@ //======================================================================== // -// Catalog.cc +// Catalog.cpp // // Copyright 1996-2007 Glyph & Cog, LLC // diff --git a/kpdf/xpdf/xpdf/CharCodeToUnicode.cc b/kpdf/xpdf/xpdf/CharCodeToUnicode.cpp similarity index 99% rename from kpdf/xpdf/xpdf/CharCodeToUnicode.cc rename to kpdf/xpdf/xpdf/CharCodeToUnicode.cpp index 3702a16d..1144caec 100644 --- a/kpdf/xpdf/xpdf/CharCodeToUnicode.cc +++ b/kpdf/xpdf/xpdf/CharCodeToUnicode.cpp @@ -1,6 +1,6 @@ //======================================================================== // -// CharCodeToUnicode.cc +// CharCodeToUnicode.cpp // // Copyright 2001-2003 Glyph & Cog, LLC // diff --git a/kpdf/xpdf/xpdf/Decrypt.cc b/kpdf/xpdf/xpdf/Decrypt.cpp similarity index 99% rename from kpdf/xpdf/xpdf/Decrypt.cc rename to kpdf/xpdf/xpdf/Decrypt.cpp index 51e56fb1..97fa0bd6 100644 --- a/kpdf/xpdf/xpdf/Decrypt.cc +++ b/kpdf/xpdf/xpdf/Decrypt.cpp @@ -1,6 +1,6 @@ //======================================================================== // -// Decrypt.cc +// Decrypt.cpp // // Copyright 1996-2003 Glyph & Cog, LLC // diff --git a/kpdf/xpdf/xpdf/Dict.cc b/kpdf/xpdf/xpdf/Dict.cpp similarity index 99% rename from kpdf/xpdf/xpdf/Dict.cc rename to kpdf/xpdf/xpdf/Dict.cpp index dd1517f0..593e9a11 100644 --- a/kpdf/xpdf/xpdf/Dict.cc +++ b/kpdf/xpdf/xpdf/Dict.cpp @@ -1,6 +1,6 @@ //======================================================================== // -// Dict.cc +// Dict.cpp // // Copyright 1996-2003 Glyph & Cog, LLC // diff --git a/kpdf/xpdf/xpdf/FontEncodingTables.cc b/kpdf/xpdf/xpdf/FontEncodingTables.cpp similarity index 99% rename from kpdf/xpdf/xpdf/FontEncodingTables.cc rename to kpdf/xpdf/xpdf/FontEncodingTables.cpp index f3b9280a..4cd1affe 100644 --- a/kpdf/xpdf/xpdf/FontEncodingTables.cc +++ b/kpdf/xpdf/xpdf/FontEncodingTables.cpp @@ -1,6 +1,6 @@ //======================================================================== // -// FontEncodingTables.cc +// FontEncodingTables.cpp // // Copyright 2001-2003 Glyph & Cog, LLC // diff --git a/kpdf/xpdf/xpdf/Function.cc b/kpdf/xpdf/xpdf/Function.cpp similarity index 99% rename from kpdf/xpdf/xpdf/Function.cc rename to kpdf/xpdf/xpdf/Function.cpp index eaf8e974..f36c8f6c 100644 --- a/kpdf/xpdf/xpdf/Function.cc +++ b/kpdf/xpdf/xpdf/Function.cpp @@ -1,6 +1,6 @@ //======================================================================== // -// Function.cc +// Function.cpp // // Copyright 2001-2003 Glyph & Cog, LLC // diff --git a/kpdf/xpdf/xpdf/Gfx.cc b/kpdf/xpdf/xpdf/Gfx.cpp similarity index 99% rename from kpdf/xpdf/xpdf/Gfx.cc rename to kpdf/xpdf/xpdf/Gfx.cpp index e3df8384..2a4fdb6e 100644 --- a/kpdf/xpdf/xpdf/Gfx.cc +++ b/kpdf/xpdf/xpdf/Gfx.cpp @@ -1,6 +1,6 @@ //======================================================================== // -// Gfx.cc +// Gfx.cpp // // Copyright 1996-2003 Glyph & Cog, LLC // diff --git a/kpdf/xpdf/xpdf/GfxFont.cc b/kpdf/xpdf/xpdf/GfxFont.cpp similarity index 99% rename from kpdf/xpdf/xpdf/GfxFont.cc rename to kpdf/xpdf/xpdf/GfxFont.cpp index 8694be47..4298b41c 100644 --- a/kpdf/xpdf/xpdf/GfxFont.cc +++ b/kpdf/xpdf/xpdf/GfxFont.cpp @@ -1,6 +1,6 @@ //======================================================================== // -// GfxFont.cc +// GfxFont.cpp // // Copyright 1996-2003 Glyph & Cog, LLC // diff --git a/kpdf/xpdf/xpdf/GfxState.cc b/kpdf/xpdf/xpdf/GfxState.cpp similarity index 99% rename from kpdf/xpdf/xpdf/GfxState.cc rename to kpdf/xpdf/xpdf/GfxState.cpp index a00dabe1..f7cb1ce9 100644 --- a/kpdf/xpdf/xpdf/GfxState.cc +++ b/kpdf/xpdf/xpdf/GfxState.cpp @@ -1,6 +1,6 @@ //======================================================================== // -// GfxState.cc +// GfxState.cpp // // Copyright 1996-2003 Glyph & Cog, LLC // diff --git a/kpdf/xpdf/xpdf/GfxState.h b/kpdf/xpdf/xpdf/GfxState.h index f85643dc..52c5c93c 100644 --- a/kpdf/xpdf/xpdf/GfxState.h +++ b/kpdf/xpdf/xpdf/GfxState.h @@ -114,7 +114,7 @@ struct GfxCMYK { //------------------------------------------------------------------------ // NB: The nGfxColorSpaceModes constant and the gfxColorSpaceModeNames -// array defined in GfxState.cc must match this enum. +// array defined in GfxState.cpp must match this enum. enum GfxColorSpaceMode { csDeviceGray, csCalGray, diff --git a/kpdf/xpdf/xpdf/GlobalParams.cc b/kpdf/xpdf/xpdf/GlobalParams.cpp similarity index 99% rename from kpdf/xpdf/xpdf/GlobalParams.cc rename to kpdf/xpdf/xpdf/GlobalParams.cpp index 6212f42e..f18026ee 100644 --- a/kpdf/xpdf/xpdf/GlobalParams.cc +++ b/kpdf/xpdf/xpdf/GlobalParams.cpp @@ -1,6 +1,6 @@ //======================================================================== // -// GlobalParams.cc +// GlobalParams.cpp // // Copyright 2001-2003 Glyph & Cog, LLC // diff --git a/kpdf/xpdf/xpdf/JArithmeticDecoder.cc b/kpdf/xpdf/xpdf/JArithmeticDecoder.cpp similarity index 99% rename from kpdf/xpdf/xpdf/JArithmeticDecoder.cc rename to kpdf/xpdf/xpdf/JArithmeticDecoder.cpp index 195b73e1..7f7c7685 100644 --- a/kpdf/xpdf/xpdf/JArithmeticDecoder.cc +++ b/kpdf/xpdf/xpdf/JArithmeticDecoder.cpp @@ -1,6 +1,6 @@ //======================================================================== // -// JArithmeticDecoder.cc +// JArithmeticDecoder.cpp // // Copyright 2002-2004 Glyph & Cog, LLC // diff --git a/kpdf/xpdf/xpdf/JBIG2Stream.cc b/kpdf/xpdf/xpdf/JBIG2Stream.cpp similarity index 99% rename from kpdf/xpdf/xpdf/JBIG2Stream.cc rename to kpdf/xpdf/xpdf/JBIG2Stream.cpp index 43f17712..1a4058f8 100644 --- a/kpdf/xpdf/xpdf/JBIG2Stream.cc +++ b/kpdf/xpdf/xpdf/JBIG2Stream.cpp @@ -1,6 +1,6 @@ //======================================================================== // -// JBIG2Stream.cc +// JBIG2Stream.cpp // // Copyright 2002-2003 Glyph & Cog, LLC // diff --git a/kpdf/xpdf/xpdf/JPXStream.cc b/kpdf/xpdf/xpdf/JPXStream.cpp similarity index 99% rename from kpdf/xpdf/xpdf/JPXStream.cc rename to kpdf/xpdf/xpdf/JPXStream.cpp index 54a9e103..93b46471 100644 --- a/kpdf/xpdf/xpdf/JPXStream.cc +++ b/kpdf/xpdf/xpdf/JPXStream.cpp @@ -1,6 +1,6 @@ //======================================================================== // -// JPXStream.cc +// JPXStream.cpp // // Copyright 2002-2003 Glyph & Cog, LLC // diff --git a/kpdf/xpdf/xpdf/Lexer.cc b/kpdf/xpdf/xpdf/Lexer.cpp similarity index 99% rename from kpdf/xpdf/xpdf/Lexer.cc rename to kpdf/xpdf/xpdf/Lexer.cpp index 1ef37175..04eadef2 100644 --- a/kpdf/xpdf/xpdf/Lexer.cc +++ b/kpdf/xpdf/xpdf/Lexer.cpp @@ -1,6 +1,6 @@ //======================================================================== // -// Lexer.cc +// Lexer.cpp // // Copyright 1996-2003 Glyph & Cog, LLC // diff --git a/kpdf/xpdf/xpdf/Link.cc b/kpdf/xpdf/xpdf/Link.cpp similarity index 99% rename from kpdf/xpdf/xpdf/Link.cc rename to kpdf/xpdf/xpdf/Link.cpp index ae2de537..69106e13 100644 --- a/kpdf/xpdf/xpdf/Link.cc +++ b/kpdf/xpdf/xpdf/Link.cpp @@ -1,6 +1,6 @@ //======================================================================== // -// Link.cc +// Link.cpp // // Copyright 1996-2003 Glyph & Cog, LLC // diff --git a/kpdf/xpdf/xpdf/Makefile.am b/kpdf/xpdf/xpdf/Makefile.am index 4c0593ad..b86e26b8 100644 --- a/kpdf/xpdf/xpdf/Makefile.am +++ b/kpdf/xpdf/xpdf/Makefile.am @@ -2,14 +2,14 @@ INCLUDES = -I$(srcdir)/.. -I$(srcdir)/../fofi -I$(srcdir)/../splash -I$(srcdir)/ libxpdf_la_LDFLAGS = $(all_libraries) libxpdf_la_LIBADD = $(LIB_X11) $(LIBFREETYPE_LIBS) $(LIBPAPER_LIBS) $(XFT_LIBS) $(LIBJPEG) ../goo/libgoo.la ../fofi/libfofi.la ../splash/libsplash.la -libxpdf_la_SOURCES = Annot.cc Array.cc BuiltinFont.cc BuiltinFontTables.cc \ - Catalog.cc CharCodeToUnicode.cc CMap.cc Decrypt.cc Dict.cc \ - FontEncodingTables.cc Function.cc Gfx.cc \ - GfxFont.cc GfxState.cc GlobalParams.cc JArithmeticDecoder.cc \ - JBIG2Stream.cc Lexer.cc Link.cc NameToCharCode.cc Object.cc Outline.cc \ - OutputDev.cc PDFDoc.cc PDFDocEncoding.cc PreScanOutputDev.cc PSTokenizer.cc \ - Page.cc Parser.cc PSOutputDev.cc SecurityHandler.cc SplashOutputDev.cc Stream.cc JPXStream.cc \ - TextOutputDev.cc UnicodeMap.cc UnicodeTypeTable.cc XRef.cc +libxpdf_la_SOURCES = Annot.cpp Array.cpp BuiltinFont.cpp BuiltinFontTables.cpp \ + Catalog.cpp CharCodeToUnicode.cpp CMap.cpp Decrypt.cpp Dict.cpp \ + FontEncodingTables.cpp Function.cpp Gfx.cpp \ + GfxFont.cpp GfxState.cpp GlobalParams.cpp JArithmeticDecoder.cpp \ + JBIG2Stream.cpp Lexer.cpp Link.cpp NameToCharCode.cpp Object.cpp Outline.cpp \ + OutputDev.cpp PDFDoc.cpp PDFDocEncoding.cpp PreScanOutputDev.cpp PSTokenizer.cpp \ + Page.cpp Parser.cpp PSOutputDev.cpp SecurityHandler.cpp SplashOutputDev.cpp Stream.cpp JPXStream.cpp \ + TextOutputDev.cpp UnicodeMap.cpp UnicodeTypeTable.cpp XRef.cpp noinst_LTLIBRARIES = libxpdf.la diff --git a/kpdf/xpdf/xpdf/NameToCharCode.cc b/kpdf/xpdf/xpdf/NameToCharCode.cpp similarity index 98% rename from kpdf/xpdf/xpdf/NameToCharCode.cc rename to kpdf/xpdf/xpdf/NameToCharCode.cpp index 7ebf4e16..23779f05 100644 --- a/kpdf/xpdf/xpdf/NameToCharCode.cc +++ b/kpdf/xpdf/xpdf/NameToCharCode.cpp @@ -1,6 +1,6 @@ //======================================================================== // -// NameToCharCode.cc +// NameToCharCode.cpp // // Copyright 2001-2003 Glyph & Cog, LLC // diff --git a/kpdf/xpdf/xpdf/Object.cc b/kpdf/xpdf/xpdf/Object.cpp similarity index 99% rename from kpdf/xpdf/xpdf/Object.cc rename to kpdf/xpdf/xpdf/Object.cpp index f0a3a092..81760b44 100644 --- a/kpdf/xpdf/xpdf/Object.cc +++ b/kpdf/xpdf/xpdf/Object.cpp @@ -1,6 +1,6 @@ //======================================================================== // -// Object.cc +// Object.cpp // // Copyright 1996-2003 Glyph & Cog, LLC // diff --git a/kpdf/xpdf/xpdf/Outline.cc b/kpdf/xpdf/xpdf/Outline.cpp similarity index 99% rename from kpdf/xpdf/xpdf/Outline.cc rename to kpdf/xpdf/xpdf/Outline.cpp index 39e89a3c..f5aba636 100644 --- a/kpdf/xpdf/xpdf/Outline.cc +++ b/kpdf/xpdf/xpdf/Outline.cpp @@ -1,6 +1,6 @@ //======================================================================== // -// Outline.cc +// Outline.cpp // // Copyright 2002-2003 Glyph & Cog, LLC // diff --git a/kpdf/xpdf/xpdf/OutputDev.cc b/kpdf/xpdf/xpdf/OutputDev.cpp similarity index 99% rename from kpdf/xpdf/xpdf/OutputDev.cc rename to kpdf/xpdf/xpdf/OutputDev.cpp index 3ba19973..1b394ad4 100644 --- a/kpdf/xpdf/xpdf/OutputDev.cc +++ b/kpdf/xpdf/xpdf/OutputDev.cpp @@ -1,6 +1,6 @@ //======================================================================== // -// OutputDev.cc +// OutputDev.cpp // // Copyright 1996-2003 Glyph & Cog, LLC // diff --git a/kpdf/xpdf/xpdf/PDFDoc.cc b/kpdf/xpdf/xpdf/PDFDoc.cpp similarity index 99% rename from kpdf/xpdf/xpdf/PDFDoc.cc rename to kpdf/xpdf/xpdf/PDFDoc.cpp index dc24d97e..ee2bc4df 100644 --- a/kpdf/xpdf/xpdf/PDFDoc.cc +++ b/kpdf/xpdf/xpdf/PDFDoc.cpp @@ -1,6 +1,6 @@ //======================================================================== // -// PDFDoc.cc +// PDFDoc.cpp // // Copyright 1996-2003 Glyph & Cog, LLC // diff --git a/kpdf/xpdf/xpdf/PDFDocEncoding.cc b/kpdf/xpdf/xpdf/PDFDocEncoding.cpp similarity index 100% rename from kpdf/xpdf/xpdf/PDFDocEncoding.cc rename to kpdf/xpdf/xpdf/PDFDocEncoding.cpp diff --git a/kpdf/xpdf/xpdf/PSOutputDev.cc b/kpdf/xpdf/xpdf/PSOutputDev.cpp similarity index 99% rename from kpdf/xpdf/xpdf/PSOutputDev.cc rename to kpdf/xpdf/xpdf/PSOutputDev.cpp index 4fb2cbfd..9d1d7648 100644 --- a/kpdf/xpdf/xpdf/PSOutputDev.cc +++ b/kpdf/xpdf/xpdf/PSOutputDev.cpp @@ -1,6 +1,6 @@ //======================================================================== // -// PSOutputDev.cc +// PSOutputDev.cpp // // Copyright 1996-2003 Glyph & Cog, LLC // diff --git a/kpdf/xpdf/xpdf/PSTokenizer.cc b/kpdf/xpdf/xpdf/PSTokenizer.cpp similarity index 99% rename from kpdf/xpdf/xpdf/PSTokenizer.cc rename to kpdf/xpdf/xpdf/PSTokenizer.cpp index a959cc73..4898fe42 100644 --- a/kpdf/xpdf/xpdf/PSTokenizer.cc +++ b/kpdf/xpdf/xpdf/PSTokenizer.cpp @@ -1,6 +1,6 @@ //======================================================================== // -// PSTokenizer.cc +// PSTokenizer.cpp // // Copyright 2002-2003 Glyph & Cog, LLC // diff --git a/kpdf/xpdf/xpdf/Page.cc b/kpdf/xpdf/xpdf/Page.cpp similarity index 99% rename from kpdf/xpdf/xpdf/Page.cc rename to kpdf/xpdf/xpdf/Page.cpp index cfeab88b..de2fe6c0 100644 --- a/kpdf/xpdf/xpdf/Page.cc +++ b/kpdf/xpdf/xpdf/Page.cpp @@ -1,6 +1,6 @@ //======================================================================== // -// Page.cc +// Page.cpp // // Copyright 1996-2007 Glyph & Cog, LLC // diff --git a/kpdf/xpdf/xpdf/Parser.cc b/kpdf/xpdf/xpdf/Parser.cpp similarity index 99% rename from kpdf/xpdf/xpdf/Parser.cc rename to kpdf/xpdf/xpdf/Parser.cpp index 65a43d94..95475b85 100644 --- a/kpdf/xpdf/xpdf/Parser.cc +++ b/kpdf/xpdf/xpdf/Parser.cpp @@ -1,6 +1,6 @@ //======================================================================== // -// Parser.cc +// Parser.cpp // // Copyright 1996-2003 Glyph & Cog, LLC // diff --git a/kpdf/xpdf/xpdf/PreScanOutputDev.cc b/kpdf/xpdf/xpdf/PreScanOutputDev.cpp similarity index 99% rename from kpdf/xpdf/xpdf/PreScanOutputDev.cc rename to kpdf/xpdf/xpdf/PreScanOutputDev.cpp index 52ffeb7f..e05cdc34 100644 --- a/kpdf/xpdf/xpdf/PreScanOutputDev.cc +++ b/kpdf/xpdf/xpdf/PreScanOutputDev.cpp @@ -1,6 +1,6 @@ //======================================================================== // -// PreScanOutputDev.cc +// PreScanOutputDev.cpp // // Copyright 2005 Glyph & Cog, LLC // diff --git a/kpdf/xpdf/xpdf/SecurityHandler.cc b/kpdf/xpdf/xpdf/SecurityHandler.cpp similarity index 99% rename from kpdf/xpdf/xpdf/SecurityHandler.cc rename to kpdf/xpdf/xpdf/SecurityHandler.cpp index ea0f9341..6c2abba0 100644 --- a/kpdf/xpdf/xpdf/SecurityHandler.cc +++ b/kpdf/xpdf/xpdf/SecurityHandler.cpp @@ -1,6 +1,6 @@ //======================================================================== // -// SecurityHandler.cc +// SecurityHandler.cpp // // Copyright 2004 Glyph & Cog, LLC // diff --git a/kpdf/xpdf/xpdf/SplashOutputDev.cc b/kpdf/xpdf/xpdf/SplashOutputDev.cpp similarity index 99% rename from kpdf/xpdf/xpdf/SplashOutputDev.cc rename to kpdf/xpdf/xpdf/SplashOutputDev.cpp index fe235fb8..2de19e73 100644 --- a/kpdf/xpdf/xpdf/SplashOutputDev.cc +++ b/kpdf/xpdf/xpdf/SplashOutputDev.cpp @@ -1,6 +1,6 @@ //======================================================================== // -// SplashOutputDev.cc +// SplashOutputDev.cpp // // Copyright 2003 Glyph & Cog, LLC // diff --git a/kpdf/xpdf/xpdf/Stream.cc b/kpdf/xpdf/xpdf/Stream.cpp similarity index 99% rename from kpdf/xpdf/xpdf/Stream.cc rename to kpdf/xpdf/xpdf/Stream.cpp index 2c1db5b4..0d85a766 100644 --- a/kpdf/xpdf/xpdf/Stream.cc +++ b/kpdf/xpdf/xpdf/Stream.cpp @@ -1,6 +1,6 @@ //======================================================================== // -// Stream.cc +// Stream.cpp // // Copyright 1996-2003 Glyph & Cog, LLC // diff --git a/kpdf/xpdf/xpdf/TextOutputDev.cc b/kpdf/xpdf/xpdf/TextOutputDev.cpp similarity index 99% rename from kpdf/xpdf/xpdf/TextOutputDev.cc rename to kpdf/xpdf/xpdf/TextOutputDev.cpp index d2bfaf63..3387a31a 100644 --- a/kpdf/xpdf/xpdf/TextOutputDev.cc +++ b/kpdf/xpdf/xpdf/TextOutputDev.cpp @@ -1,6 +1,6 @@ //======================================================================== // -// TextOutputDev.cc +// TextOutputDev.cpp // // Copyright 1997-2003 Glyph & Cog, LLC // diff --git a/kpdf/xpdf/xpdf/UnicodeMap.cc b/kpdf/xpdf/xpdf/UnicodeMap.cpp similarity index 99% rename from kpdf/xpdf/xpdf/UnicodeMap.cc rename to kpdf/xpdf/xpdf/UnicodeMap.cpp index 2b8cb1f7..f3d18715 100644 --- a/kpdf/xpdf/xpdf/UnicodeMap.cc +++ b/kpdf/xpdf/xpdf/UnicodeMap.cpp @@ -1,6 +1,6 @@ //======================================================================== // -// UnicodeMap.cc +// UnicodeMap.cpp // // Copyright 2001-2003 Glyph & Cog, LLC // diff --git a/kpdf/xpdf/xpdf/UnicodeTypeTable.cc b/kpdf/xpdf/xpdf/UnicodeTypeTable.cpp similarity index 99% rename from kpdf/xpdf/xpdf/UnicodeTypeTable.cc rename to kpdf/xpdf/xpdf/UnicodeTypeTable.cpp index b8960403..39b9d842 100644 --- a/kpdf/xpdf/xpdf/UnicodeTypeTable.cc +++ b/kpdf/xpdf/xpdf/UnicodeTypeTable.cpp @@ -1,6 +1,6 @@ //======================================================================== // -// UnicodeTypeTable.cc +// UnicodeTypeTable.cpp // // Copyright 2004 Glyph & Cog, LLC // diff --git a/kpdf/xpdf/xpdf/XRef.cc b/kpdf/xpdf/xpdf/XRef.cpp similarity index 99% rename from kpdf/xpdf/xpdf/XRef.cc rename to kpdf/xpdf/xpdf/XRef.cpp index 2e0d1cef..06a1c4e1 100644 --- a/kpdf/xpdf/xpdf/XRef.cc +++ b/kpdf/xpdf/xpdf/XRef.cpp @@ -1,6 +1,6 @@ //======================================================================== // -// XRef.cc +// XRef.cpp // // Copyright 1996-2003 Glyph & Cog, LLC // diff --git a/kpovmodeler/pmactions.cpp b/kpovmodeler/pmactions.cpp index 31ef2aac..3b1201c4 100644 --- a/kpovmodeler/pmactions.cpp +++ b/kpovmodeler/pmactions.cpp @@ -116,7 +116,7 @@ void PMComboAction::unplug( TQWidget *w ) // Use a toolbutton instead of a label so it is styled correctly. -// copied from konq_actions.cc +// copied from konq_actions.cpp class PMToolBarLabel : public TQToolButton { public: diff --git a/ksvg/Makefile.am b/ksvg/Makefile.am index 8dec4221..86429f96 100644 --- a/ksvg/Makefile.am +++ b/ksvg/Makefile.am @@ -1,7 +1,7 @@ SUBDIRS = dom impl core ecma . plugin test lib_LTLIBRARIES = libksvg.la -libksvg_la_SOURCES = dummy.cc +libksvg_la_SOURCES = dummy.cpp libksvg_la_METASOURCES = AUTO libksvg_la_LDFLAGS = -version-info 0:1:0 -no-undefined $(all_libraries) libksvg_la_LIBADD = dom/libksvgdom.la impl/libksvgdomimpl.la core/libksvgcore.la ecma/libksvgecma.la \ @@ -10,100 +10,100 @@ libksvg_la_LIBADD = dom/libksvgdom.la impl/libksvgdomimpl.la core/libksvgcore.l INCLUDES = -I$(top_srcdir)/ksvg/dom -I$(top_srcdir)/ksvg/impl $(all_includes) -dummy.cc: - echo "" > dummy.cc +dummy.cpp: + echo "" > dummy.cpp # Make it easy for developers :) hashtables: cd $(srcdir); \ rm -f data/*lut* ; \ - ../../tdelibs/kjs/create_hash_table impl/SVGElementImpl.cc > data/SVGElementImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGSVGElementImpl.cc > data/SVGSVGElementImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGRectElementImpl.cc > data/SVGRectElementImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGLineElementImpl.cc > data/SVGLineElementImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGCircleElementImpl.cc > data/SVGCircleElementImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGImageElementImpl.cc > data/SVGImageElementImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGEllipseElementImpl.cc > data/SVGEllipseElementImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGAnimatedPointsImpl.cc > data/SVGAnimatedPointsImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGPointImpl.cc > data/SVGPointImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGRectImpl.cc > data/SVGRectImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGNumberImpl.cc > data/SVGNumberImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGAnimatedAngleImpl.cc > data/SVGAnimatedAngleImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGAnimatedRectImpl.cc > data/SVGAnimatedRectImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGAnimatedNumberImpl.cc > data/SVGAnimatedNumberImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGAnimatedNumberListImpl.cc > data/SVGAnimatedNumberListImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGAnimatedIntegerImpl.cc > data/SVGAnimatedIntegerImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGAnimatedBooleanImpl.cc > data/SVGAnimatedBooleanImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGAnimatedEnumerationImpl.cc > data/SVGAnimatedEnumerationImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGAnimatedStringImpl.cc > data/SVGAnimatedStringImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGAnimatedLengthImpl.cc > data/SVGAnimatedLengthImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGAnimatedLengthListImpl.cc > data/SVGAnimatedLengthListImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGAnimatedPreserveAspectRatioImpl.cc > data/SVGAnimatedPreserveAspectRatioImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGPreserveAspectRatioImpl.cc > data/SVGPreserveAspectRatioImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGLengthImpl.cc > data/SVGLengthImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGMatrixImpl.cc > data/SVGMatrixImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGAngleImpl.cc > data/SVGAngleImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGLocatableImpl.cc > data/SVGLocatableImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGTestsImpl.cc > data/SVGTestsImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGLangSpaceImpl.cc > data/SVGLangSpaceImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGExternalResourcesRequiredImpl.cc > data/SVGExternalResourcesRequiredImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGURIReferenceImpl.cc > data/SVGURIReferenceImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGPaintImpl.cc > data/SVGPaintImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGColorImpl.cc > data/SVGColorImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGICCColorImpl.cc > data/SVGICCColorImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGTextPositioningElementImpl.cc > data/SVGTextPositioningElementImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGTextContentElementImpl.cc > data/SVGTextContentElementImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGTransformImpl.cc > data/SVGTransformImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGTransformableImpl.cc > data/SVGTransformableImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGPointListImpl.cc > data/SVGPointListImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGNumberListImpl.cc > data/SVGNumberListImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGLengthListImpl.cc > data/SVGLengthListImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGStringListImpl.cc > data/SVGStringListImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGAnimatedPathDataImpl.cc > data/SVGAnimatedPathDataImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGPathSegImpl.cc > data/SVGPathSegImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGPathSegArcImpl.cc > data/SVGPathSegArcImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGPathSegMovetoImpl.cc > data/SVGPathSegMovetoImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGPathSegLinetoImpl.cc > data/SVGPathSegLinetoImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGPathSegLinetoHorizontalImpl.cc > data/SVGPathSegLinetoHorizontalImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGPathSegLinetoVerticalImpl.cc > data/SVGPathSegLinetoVerticalImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGPathSegCurvetoCubicImpl.cc > data/SVGPathSegCurvetoCubicImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGPathSegCurvetoCubicSmoothImpl.cc > data/SVGPathSegCurvetoCubicSmoothImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGPathSegCurvetoQuadraticImpl.cc > data/SVGPathSegCurvetoQuadraticImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGPathSegCurvetoQuadraticSmoothImpl.cc > data/SVGPathSegCurvetoQuadraticSmoothImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGPathElementImpl.cc > data/SVGPathElementImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGPathSegListImpl.cc > data/SVGPathSegListImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGTransformListImpl.cc > data/SVGTransformListImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGAnimatedTransformListImpl.cc > data/SVGAnimatedTransformListImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGAElementImpl.cc > data/SVGAElementImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGUseElementImpl.cc > data/SVGUseElementImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGDocumentImpl.cc > data/SVGDocumentImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGForeignObjectElementImpl.cc > data/SVGForeignObjectElementImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGScriptElementImpl.cc > data/SVGScriptElementImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGStyleElementImpl.cc > data/SVGStyleElementImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGZoomAndPanImpl.cc > data/SVGZoomAndPanImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGFitToViewBoxImpl.cc > data/SVGFitToViewBoxImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGStylableImpl.cc > data/SVGStylableImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGEventImpl.cc > data/SVGEventImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGEcma.cc > data/SVGEcma.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGMarkerElementImpl.cc > data/SVGMarkerElementImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGViewElementImpl.cc > data/SVGViewElementImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGTextContentElementImpl.cc > data/SVGTextContentElementImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGClipPathElementImpl.cc > data/SVGClipPathElementImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGColorProfileElementImpl.cc > data/SVGColorProfileElementImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGPatternElementImpl.cc > data/SVGPatternElementImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGGradientElementImpl.cc > data/SVGGradientElementImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGLinearGradientElementImpl.cc > data/SVGLinearGradientElementImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGRadialGradientElementImpl.cc > data/SVGRadialGradientElementImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGStopElementImpl.cc > data/SVGStopElementImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGAnimationElementImpl.cc > data/SVGAnimationElementImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGCursorElementImpl.cc > data/SVGCursorElementImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGSymbolElementImpl.cc > data/SVGSymbolElementImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGMaskElementImpl.cc > data/SVGMaskElementImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGGlyphElementImpl.cc > data/SVGGlyphElementImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGMissingGlyphElementImpl.cc > data/SVGMissingGlyphElementImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGGlyphRefElementImpl.cc > data/SVGGlyphRefElementImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGTextPathElementImpl.cc > data/SVGTextPathElementImpl.lut.h; \ - ../../tdelibs/kjs/create_hash_table impl/SVGZoomEventImpl.cc > data/SVGZoomEventImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGElementImpl.cpp > data/SVGElementImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGSVGElementImpl.cpp > data/SVGSVGElementImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGRectElementImpl.cpp > data/SVGRectElementImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGLineElementImpl.cpp > data/SVGLineElementImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGCircleElementImpl.cpp > data/SVGCircleElementImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGImageElementImpl.cpp > data/SVGImageElementImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGEllipseElementImpl.cpp > data/SVGEllipseElementImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGAnimatedPointsImpl.cpp > data/SVGAnimatedPointsImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGPointImpl.cpp > data/SVGPointImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGRectImpl.cpp > data/SVGRectImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGNumberImpl.cpp > data/SVGNumberImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGAnimatedAngleImpl.cpp > data/SVGAnimatedAngleImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGAnimatedRectImpl.cpp > data/SVGAnimatedRectImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGAnimatedNumberImpl.cpp > data/SVGAnimatedNumberImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGAnimatedNumberListImpl.cpp > data/SVGAnimatedNumberListImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGAnimatedIntegerImpl.cpp > data/SVGAnimatedIntegerImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGAnimatedBooleanImpl.cpp > data/SVGAnimatedBooleanImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGAnimatedEnumerationImpl.cpp > data/SVGAnimatedEnumerationImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGAnimatedStringImpl.cpp > data/SVGAnimatedStringImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGAnimatedLengthImpl.cpp > data/SVGAnimatedLengthImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGAnimatedLengthListImpl.cpp > data/SVGAnimatedLengthListImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGAnimatedPreserveAspectRatioImpl.cpp > data/SVGAnimatedPreserveAspectRatioImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGPreserveAspectRatioImpl.cpp > data/SVGPreserveAspectRatioImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGLengthImpl.cpp > data/SVGLengthImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGMatrixImpl.cpp > data/SVGMatrixImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGAngleImpl.cpp > data/SVGAngleImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGLocatableImpl.cpp > data/SVGLocatableImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGTestsImpl.cpp > data/SVGTestsImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGLangSpaceImpl.cpp > data/SVGLangSpaceImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGExternalResourcesRequiredImpl.cpp > data/SVGExternalResourcesRequiredImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGURIReferenceImpl.cpp > data/SVGURIReferenceImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGPaintImpl.cpp > data/SVGPaintImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGColorImpl.cpp > data/SVGColorImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGICCColorImpl.cpp > data/SVGICCColorImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGTextPositioningElementImpl.cpp > data/SVGTextPositioningElementImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGTextContentElementImpl.cpp > data/SVGTextContentElementImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGTransformImpl.cpp > data/SVGTransformImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGTransformableImpl.cpp > data/SVGTransformableImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGPointListImpl.cpp > data/SVGPointListImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGNumberListImpl.cpp > data/SVGNumberListImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGLengthListImpl.cpp > data/SVGLengthListImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGStringListImpl.cpp > data/SVGStringListImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGAnimatedPathDataImpl.cpp > data/SVGAnimatedPathDataImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGPathSegImpl.cpp > data/SVGPathSegImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGPathSegArcImpl.cpp > data/SVGPathSegArcImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGPathSegMovetoImpl.cpp > data/SVGPathSegMovetoImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGPathSegLinetoImpl.cpp > data/SVGPathSegLinetoImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGPathSegLinetoHorizontalImpl.cpp > data/SVGPathSegLinetoHorizontalImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGPathSegLinetoVerticalImpl.cpp > data/SVGPathSegLinetoVerticalImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGPathSegCurvetoCubicImpl.cpp > data/SVGPathSegCurvetoCubicImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGPathSegCurvetoCubicSmoothImpl.cpp > data/SVGPathSegCurvetoCubicSmoothImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGPathSegCurvetoQuadraticImpl.cpp > data/SVGPathSegCurvetoQuadraticImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGPathSegCurvetoQuadraticSmoothImpl.cpp > data/SVGPathSegCurvetoQuadraticSmoothImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGPathElementImpl.cpp > data/SVGPathElementImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGPathSegListImpl.cpp > data/SVGPathSegListImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGTransformListImpl.cpp > data/SVGTransformListImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGAnimatedTransformListImpl.cpp > data/SVGAnimatedTransformListImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGAElementImpl.cpp > data/SVGAElementImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGUseElementImpl.cpp > data/SVGUseElementImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGDocumentImpl.cpp > data/SVGDocumentImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGForeignObjectElementImpl.cpp > data/SVGForeignObjectElementImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGScriptElementImpl.cpp > data/SVGScriptElementImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGStyleElementImpl.cpp > data/SVGStyleElementImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGZoomAndPanImpl.cpp > data/SVGZoomAndPanImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGFitToViewBoxImpl.cpp > data/SVGFitToViewBoxImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGStylableImpl.cpp > data/SVGStylableImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGEventImpl.cpp > data/SVGEventImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGEcma.cpp > data/SVGEcma.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGMarkerElementImpl.cpp > data/SVGMarkerElementImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGViewElementImpl.cpp > data/SVGViewElementImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGTextContentElementImpl.cpp > data/SVGTextContentElementImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGClipPathElementImpl.cpp > data/SVGClipPathElementImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGColorProfileElementImpl.cpp > data/SVGColorProfileElementImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGPatternElementImpl.cpp > data/SVGPatternElementImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGGradientElementImpl.cpp > data/SVGGradientElementImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGLinearGradientElementImpl.cpp > data/SVGLinearGradientElementImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGRadialGradientElementImpl.cpp > data/SVGRadialGradientElementImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGStopElementImpl.cpp > data/SVGStopElementImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGAnimationElementImpl.cpp > data/SVGAnimationElementImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGCursorElementImpl.cpp > data/SVGCursorElementImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGSymbolElementImpl.cpp > data/SVGSymbolElementImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGMaskElementImpl.cpp > data/SVGMaskElementImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGGlyphElementImpl.cpp > data/SVGGlyphElementImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGMissingGlyphElementImpl.cpp > data/SVGMissingGlyphElementImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGGlyphRefElementImpl.cpp > data/SVGGlyphRefElementImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGTextPathElementImpl.cpp > data/SVGTextPathElementImpl.lut.h; \ + ../../tdelibs/kjs/create_hash_table impl/SVGZoomEventImpl.cpp > data/SVGZoomEventImpl.lut.h; \ ../../tdelibs/kjs/create_hash_table ecma/ksvg_window.cpp > data/ksvg_window.lut.h; generatedata: diff --git a/ksvg/core/CMakeLists.txt b/ksvg/core/CMakeLists.txt index 8506cf76..3818acaf 100644 --- a/ksvg/core/CMakeLists.txt +++ b/ksvg/core/CMakeLists.txt @@ -46,6 +46,6 @@ tde_create_translated_desktop( tde_add_library( ksvgcore STATIC_PIC AUTOMOC SOURCES - KSVGLoader.cpp KSVGCanvas.cpp KSVGReader.cc KSVGTextChunk.cpp + KSVGLoader.cpp KSVGCanvas.cpp KSVGReader.cpp KSVGTextChunk.cpp CanvasFactory.cpp CanvasItems.cpp KSVGHelper.cpp DocumentFactory.cpp ) diff --git a/ksvg/core/KSVGReader.cc b/ksvg/core/KSVGReader.cpp similarity index 100% rename from ksvg/core/KSVGReader.cc rename to ksvg/core/KSVGReader.cpp diff --git a/ksvg/core/Makefile.am b/ksvg/core/Makefile.am index e1867428..c511c165 100644 --- a/ksvg/core/Makefile.am +++ b/ksvg/core/Makefile.am @@ -1,6 +1,6 @@ noinst_LTLIBRARIES = libksvgcore.la -libksvgcore_la_SOURCES = KSVGLoader.cpp KSVGCanvas.cpp KSVGReader.cc KSVGTextChunk.cpp CanvasFactory.cpp CanvasItems.cpp KSVGHelper.cpp DocumentFactory.cpp +libksvgcore_la_SOURCES = KSVGLoader.cpp KSVGCanvas.cpp KSVGReader.cpp KSVGTextChunk.cpp CanvasFactory.cpp CanvasItems.cpp KSVGHelper.cpp DocumentFactory.cpp libksvgcore_la_METASOURCES = AUTO servicetypedir = $(kde_servicetypesdir) diff --git a/ksvg/data/SVGAElementImpl.lut.h b/ksvg/data/SVGAElementImpl.lut.h index 2d303e23..b99a5c31 100644 --- a/ksvg/data/SVGAElementImpl.lut.h +++ b/ksvg/data/SVGAElementImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGAElementImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGAElementImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGAngleImpl.lut.h b/ksvg/data/SVGAngleImpl.lut.h index ac8ea8ba..6e1b45d4 100644 --- a/ksvg/data/SVGAngleImpl.lut.h +++ b/ksvg/data/SVGAngleImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGAngleImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGAngleImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGAnimatedAngleImpl.lut.h b/ksvg/data/SVGAnimatedAngleImpl.lut.h index 27d37f10..d98dd01e 100644 --- a/ksvg/data/SVGAnimatedAngleImpl.lut.h +++ b/ksvg/data/SVGAnimatedAngleImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGAnimatedAngleImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGAnimatedAngleImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGAnimatedBooleanImpl.lut.h b/ksvg/data/SVGAnimatedBooleanImpl.lut.h index e0b612a9..67cd8a37 100644 --- a/ksvg/data/SVGAnimatedBooleanImpl.lut.h +++ b/ksvg/data/SVGAnimatedBooleanImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGAnimatedBooleanImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGAnimatedBooleanImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGAnimatedEnumerationImpl.lut.h b/ksvg/data/SVGAnimatedEnumerationImpl.lut.h index 2c9c5bbb..227666e8 100644 --- a/ksvg/data/SVGAnimatedEnumerationImpl.lut.h +++ b/ksvg/data/SVGAnimatedEnumerationImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGAnimatedEnumerationImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGAnimatedEnumerationImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGAnimatedIntegerImpl.lut.h b/ksvg/data/SVGAnimatedIntegerImpl.lut.h index 53f318f0..e769d35c 100644 --- a/ksvg/data/SVGAnimatedIntegerImpl.lut.h +++ b/ksvg/data/SVGAnimatedIntegerImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGAnimatedIntegerImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGAnimatedIntegerImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGAnimatedLengthImpl.lut.h b/ksvg/data/SVGAnimatedLengthImpl.lut.h index 3de40716..28bbb642 100644 --- a/ksvg/data/SVGAnimatedLengthImpl.lut.h +++ b/ksvg/data/SVGAnimatedLengthImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGAnimatedLengthImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGAnimatedLengthImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGAnimatedLengthListImpl.lut.h b/ksvg/data/SVGAnimatedLengthListImpl.lut.h index 25f317a1..dd28fc61 100644 --- a/ksvg/data/SVGAnimatedLengthListImpl.lut.h +++ b/ksvg/data/SVGAnimatedLengthListImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGAnimatedLengthListImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGAnimatedLengthListImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGAnimatedNumberImpl.lut.h b/ksvg/data/SVGAnimatedNumberImpl.lut.h index 68c935e0..15800017 100644 --- a/ksvg/data/SVGAnimatedNumberImpl.lut.h +++ b/ksvg/data/SVGAnimatedNumberImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGAnimatedNumberImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGAnimatedNumberImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGAnimatedNumberListImpl.lut.h b/ksvg/data/SVGAnimatedNumberListImpl.lut.h index d10cdb39..77b1183a 100644 --- a/ksvg/data/SVGAnimatedNumberListImpl.lut.h +++ b/ksvg/data/SVGAnimatedNumberListImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGAnimatedNumberListImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGAnimatedNumberListImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGAnimatedPathDataImpl.lut.h b/ksvg/data/SVGAnimatedPathDataImpl.lut.h index 3bf7f4b3..76238d7a 100644 --- a/ksvg/data/SVGAnimatedPathDataImpl.lut.h +++ b/ksvg/data/SVGAnimatedPathDataImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGAnimatedPathDataImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGAnimatedPathDataImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGAnimatedPointsImpl.lut.h b/ksvg/data/SVGAnimatedPointsImpl.lut.h index aa5c49c6..832ce16c 100644 --- a/ksvg/data/SVGAnimatedPointsImpl.lut.h +++ b/ksvg/data/SVGAnimatedPointsImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGAnimatedPointsImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGAnimatedPointsImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGAnimatedPreserveAspectRatioImpl.lut.h b/ksvg/data/SVGAnimatedPreserveAspectRatioImpl.lut.h index e93eb180..6903faee 100644 --- a/ksvg/data/SVGAnimatedPreserveAspectRatioImpl.lut.h +++ b/ksvg/data/SVGAnimatedPreserveAspectRatioImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGAnimatedPreserveAspectRatioImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGAnimatedPreserveAspectRatioImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGAnimatedRectImpl.lut.h b/ksvg/data/SVGAnimatedRectImpl.lut.h index 1f7c994c..30023f69 100644 --- a/ksvg/data/SVGAnimatedRectImpl.lut.h +++ b/ksvg/data/SVGAnimatedRectImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGAnimatedRectImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGAnimatedRectImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGAnimatedStringImpl.lut.h b/ksvg/data/SVGAnimatedStringImpl.lut.h index 264a1681..9be92fca 100644 --- a/ksvg/data/SVGAnimatedStringImpl.lut.h +++ b/ksvg/data/SVGAnimatedStringImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGAnimatedStringImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGAnimatedStringImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGAnimatedTransformListImpl.lut.h b/ksvg/data/SVGAnimatedTransformListImpl.lut.h index 29a9116c..50f01362 100644 --- a/ksvg/data/SVGAnimatedTransformListImpl.lut.h +++ b/ksvg/data/SVGAnimatedTransformListImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGAnimatedTransformListImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGAnimatedTransformListImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGAnimationElementImpl.lut.h b/ksvg/data/SVGAnimationElementImpl.lut.h index 39504503..3f76ee3c 100644 --- a/ksvg/data/SVGAnimationElementImpl.lut.h +++ b/ksvg/data/SVGAnimationElementImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGAnimationElementImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGAnimationElementImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGCircleElementImpl.lut.h b/ksvg/data/SVGCircleElementImpl.lut.h index cd58c0ba..bd58769b 100644 --- a/ksvg/data/SVGCircleElementImpl.lut.h +++ b/ksvg/data/SVGCircleElementImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGCircleElementImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGCircleElementImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGClipPathElementImpl.lut.h b/ksvg/data/SVGClipPathElementImpl.lut.h index ffaf7566..35fab5da 100644 --- a/ksvg/data/SVGClipPathElementImpl.lut.h +++ b/ksvg/data/SVGClipPathElementImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGClipPathElementImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGClipPathElementImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGColorImpl.lut.h b/ksvg/data/SVGColorImpl.lut.h index c1f0ca4b..d32c4998 100644 --- a/ksvg/data/SVGColorImpl.lut.h +++ b/ksvg/data/SVGColorImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGColorImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGColorImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGColorProfileElementImpl.lut.h b/ksvg/data/SVGColorProfileElementImpl.lut.h index f686f347..552e8c51 100644 --- a/ksvg/data/SVGColorProfileElementImpl.lut.h +++ b/ksvg/data/SVGColorProfileElementImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGColorProfileElementImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGColorProfileElementImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGCursorElementImpl.lut.h b/ksvg/data/SVGCursorElementImpl.lut.h index 26df2ec6..dc5bad0b 100644 --- a/ksvg/data/SVGCursorElementImpl.lut.h +++ b/ksvg/data/SVGCursorElementImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGCursorElementImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGCursorElementImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGDocumentImpl.lut.h b/ksvg/data/SVGDocumentImpl.lut.h index 5cd3a1d8..43b03ec4 100644 --- a/ksvg/data/SVGDocumentImpl.lut.h +++ b/ksvg/data/SVGDocumentImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGDocumentImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGDocumentImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGEcma.lut.h b/ksvg/data/SVGEcma.lut.h index c4aad5da..cd7d75ef 100644 --- a/ksvg/data/SVGEcma.lut.h +++ b/ksvg/data/SVGEcma.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGEcma.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGEcma.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGElementImpl.lut.h b/ksvg/data/SVGElementImpl.lut.h index da976ae0..941c0040 100644 --- a/ksvg/data/SVGElementImpl.lut.h +++ b/ksvg/data/SVGElementImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGElementImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGElementImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGEllipseElementImpl.lut.h b/ksvg/data/SVGEllipseElementImpl.lut.h index d39018d9..9db9d2e5 100644 --- a/ksvg/data/SVGEllipseElementImpl.lut.h +++ b/ksvg/data/SVGEllipseElementImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGEllipseElementImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGEllipseElementImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGEventImpl.lut.h b/ksvg/data/SVGEventImpl.lut.h index e7192b72..63795ede 100644 --- a/ksvg/data/SVGEventImpl.lut.h +++ b/ksvg/data/SVGEventImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGEventImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGEventImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGExternalResourcesRequiredImpl.lut.h b/ksvg/data/SVGExternalResourcesRequiredImpl.lut.h index e952c4a1..12b53aa8 100644 --- a/ksvg/data/SVGExternalResourcesRequiredImpl.lut.h +++ b/ksvg/data/SVGExternalResourcesRequiredImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGExternalResourcesRequiredImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGExternalResourcesRequiredImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGFitToViewBoxImpl.lut.h b/ksvg/data/SVGFitToViewBoxImpl.lut.h index 04b34c2e..3e04ba29 100644 --- a/ksvg/data/SVGFitToViewBoxImpl.lut.h +++ b/ksvg/data/SVGFitToViewBoxImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGFitToViewBoxImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGFitToViewBoxImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGForeignObjectElementImpl.lut.h b/ksvg/data/SVGForeignObjectElementImpl.lut.h index 16273af9..8bc35092 100644 --- a/ksvg/data/SVGForeignObjectElementImpl.lut.h +++ b/ksvg/data/SVGForeignObjectElementImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGForeignObjectElementImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGForeignObjectElementImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGGlyphElementImpl.lut.h b/ksvg/data/SVGGlyphElementImpl.lut.h index 8300e1c8..742d426e 100644 --- a/ksvg/data/SVGGlyphElementImpl.lut.h +++ b/ksvg/data/SVGGlyphElementImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGGlyphElementImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGGlyphElementImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGGlyphRefElementImpl.lut.h b/ksvg/data/SVGGlyphRefElementImpl.lut.h index f5d55bf1..0d432e0b 100644 --- a/ksvg/data/SVGGlyphRefElementImpl.lut.h +++ b/ksvg/data/SVGGlyphRefElementImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGGlyphRefElementImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGGlyphRefElementImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGGradientElementImpl.lut.h b/ksvg/data/SVGGradientElementImpl.lut.h index 7b779406..7efbfa8b 100644 --- a/ksvg/data/SVGGradientElementImpl.lut.h +++ b/ksvg/data/SVGGradientElementImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGGradientElementImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGGradientElementImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGICCColorImpl.lut.h b/ksvg/data/SVGICCColorImpl.lut.h index 1a7064ad..3f4897fc 100644 --- a/ksvg/data/SVGICCColorImpl.lut.h +++ b/ksvg/data/SVGICCColorImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGICCColorImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGICCColorImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGImageElementImpl.lut.h b/ksvg/data/SVGImageElementImpl.lut.h index 25641ee9..76906102 100644 --- a/ksvg/data/SVGImageElementImpl.lut.h +++ b/ksvg/data/SVGImageElementImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGImageElementImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGImageElementImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGLangSpaceImpl.lut.h b/ksvg/data/SVGLangSpaceImpl.lut.h index 3f00372e..2d838dd3 100644 --- a/ksvg/data/SVGLangSpaceImpl.lut.h +++ b/ksvg/data/SVGLangSpaceImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGLangSpaceImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGLangSpaceImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGLengthImpl.lut.h b/ksvg/data/SVGLengthImpl.lut.h index a9f3bbc2..e097fdf8 100644 --- a/ksvg/data/SVGLengthImpl.lut.h +++ b/ksvg/data/SVGLengthImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGLengthImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGLengthImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGLengthListImpl.lut.h b/ksvg/data/SVGLengthListImpl.lut.h index fc7249d0..f55fb042 100644 --- a/ksvg/data/SVGLengthListImpl.lut.h +++ b/ksvg/data/SVGLengthListImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGLengthListImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGLengthListImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGLineElementImpl.lut.h b/ksvg/data/SVGLineElementImpl.lut.h index 92dfd1a4..41ee7ef7 100644 --- a/ksvg/data/SVGLineElementImpl.lut.h +++ b/ksvg/data/SVGLineElementImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGLineElementImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGLineElementImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGLinearGradientElementImpl.lut.h b/ksvg/data/SVGLinearGradientElementImpl.lut.h index 65e4efba..16096835 100644 --- a/ksvg/data/SVGLinearGradientElementImpl.lut.h +++ b/ksvg/data/SVGLinearGradientElementImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGLinearGradientElementImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGLinearGradientElementImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGLocatableImpl.lut.h b/ksvg/data/SVGLocatableImpl.lut.h index ff489e1c..2c1a36fc 100644 --- a/ksvg/data/SVGLocatableImpl.lut.h +++ b/ksvg/data/SVGLocatableImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGLocatableImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGLocatableImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGMarkerElementImpl.lut.h b/ksvg/data/SVGMarkerElementImpl.lut.h index bc08f91d..2e679bab 100644 --- a/ksvg/data/SVGMarkerElementImpl.lut.h +++ b/ksvg/data/SVGMarkerElementImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGMarkerElementImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGMarkerElementImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGMaskElementImpl.lut.h b/ksvg/data/SVGMaskElementImpl.lut.h index 9957c71e..60aaa045 100644 --- a/ksvg/data/SVGMaskElementImpl.lut.h +++ b/ksvg/data/SVGMaskElementImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGMaskElementImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGMaskElementImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGMatrixImpl.lut.h b/ksvg/data/SVGMatrixImpl.lut.h index c4845b37..66588e56 100644 --- a/ksvg/data/SVGMatrixImpl.lut.h +++ b/ksvg/data/SVGMatrixImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGMatrixImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGMatrixImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGNumberImpl.lut.h b/ksvg/data/SVGNumberImpl.lut.h index 789150fe..9a7935c4 100644 --- a/ksvg/data/SVGNumberImpl.lut.h +++ b/ksvg/data/SVGNumberImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGNumberImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGNumberImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGNumberListImpl.lut.h b/ksvg/data/SVGNumberListImpl.lut.h index 4a9b715b..ca12b5f0 100644 --- a/ksvg/data/SVGNumberListImpl.lut.h +++ b/ksvg/data/SVGNumberListImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGNumberListImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGNumberListImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGPaintImpl.lut.h b/ksvg/data/SVGPaintImpl.lut.h index 0b2721e8..3b9b10fc 100644 --- a/ksvg/data/SVGPaintImpl.lut.h +++ b/ksvg/data/SVGPaintImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGPaintImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGPaintImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGPathElementImpl.lut.h b/ksvg/data/SVGPathElementImpl.lut.h index acb1300e..3a337893 100644 --- a/ksvg/data/SVGPathElementImpl.lut.h +++ b/ksvg/data/SVGPathElementImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGPathElementImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGPathElementImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGPathSegArcImpl.lut.h b/ksvg/data/SVGPathSegArcImpl.lut.h index 589b53e2..a4955d08 100644 --- a/ksvg/data/SVGPathSegArcImpl.lut.h +++ b/ksvg/data/SVGPathSegArcImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGPathSegArcImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGPathSegArcImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGPathSegCurvetoCubicImpl.lut.h b/ksvg/data/SVGPathSegCurvetoCubicImpl.lut.h index bf65567a..e61d4d1d 100644 --- a/ksvg/data/SVGPathSegCurvetoCubicImpl.lut.h +++ b/ksvg/data/SVGPathSegCurvetoCubicImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGPathSegCurvetoCubicImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGPathSegCurvetoCubicImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGPathSegCurvetoCubicSmoothImpl.lut.h b/ksvg/data/SVGPathSegCurvetoCubicSmoothImpl.lut.h index e7a6e880..3f3342df 100644 --- a/ksvg/data/SVGPathSegCurvetoCubicSmoothImpl.lut.h +++ b/ksvg/data/SVGPathSegCurvetoCubicSmoothImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGPathSegCurvetoCubicSmoothImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGPathSegCurvetoCubicSmoothImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGPathSegCurvetoQuadraticImpl.lut.h b/ksvg/data/SVGPathSegCurvetoQuadraticImpl.lut.h index ed6b4903..555a5307 100644 --- a/ksvg/data/SVGPathSegCurvetoQuadraticImpl.lut.h +++ b/ksvg/data/SVGPathSegCurvetoQuadraticImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGPathSegCurvetoQuadraticImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGPathSegCurvetoQuadraticImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGPathSegCurvetoQuadraticSmoothImpl.lut.h b/ksvg/data/SVGPathSegCurvetoQuadraticSmoothImpl.lut.h index 700ef0a0..33a53595 100644 --- a/ksvg/data/SVGPathSegCurvetoQuadraticSmoothImpl.lut.h +++ b/ksvg/data/SVGPathSegCurvetoQuadraticSmoothImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGPathSegCurvetoQuadraticSmoothImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGPathSegCurvetoQuadraticSmoothImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGPathSegImpl.lut.h b/ksvg/data/SVGPathSegImpl.lut.h index 237e1cb6..fceba663 100644 --- a/ksvg/data/SVGPathSegImpl.lut.h +++ b/ksvg/data/SVGPathSegImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGPathSegImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGPathSegImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGPathSegLinetoHorizontalImpl.lut.h b/ksvg/data/SVGPathSegLinetoHorizontalImpl.lut.h index 471f1b8f..2296650c 100644 --- a/ksvg/data/SVGPathSegLinetoHorizontalImpl.lut.h +++ b/ksvg/data/SVGPathSegLinetoHorizontalImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGPathSegLinetoHorizontalImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGPathSegLinetoHorizontalImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGPathSegLinetoImpl.lut.h b/ksvg/data/SVGPathSegLinetoImpl.lut.h index 482e1cd6..ab7616ae 100644 --- a/ksvg/data/SVGPathSegLinetoImpl.lut.h +++ b/ksvg/data/SVGPathSegLinetoImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGPathSegLinetoImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGPathSegLinetoImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGPathSegLinetoVerticalImpl.lut.h b/ksvg/data/SVGPathSegLinetoVerticalImpl.lut.h index 73c92d48..fa266b85 100644 --- a/ksvg/data/SVGPathSegLinetoVerticalImpl.lut.h +++ b/ksvg/data/SVGPathSegLinetoVerticalImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGPathSegLinetoVerticalImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGPathSegLinetoVerticalImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGPathSegListImpl.lut.h b/ksvg/data/SVGPathSegListImpl.lut.h index c0a16ee2..7ad127f3 100644 --- a/ksvg/data/SVGPathSegListImpl.lut.h +++ b/ksvg/data/SVGPathSegListImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGPathSegListImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGPathSegListImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGPathSegMovetoImpl.lut.h b/ksvg/data/SVGPathSegMovetoImpl.lut.h index bdefa143..74c86427 100644 --- a/ksvg/data/SVGPathSegMovetoImpl.lut.h +++ b/ksvg/data/SVGPathSegMovetoImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGPathSegMovetoImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGPathSegMovetoImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGPatternElementImpl.lut.h b/ksvg/data/SVGPatternElementImpl.lut.h index c4a5958a..9413e41e 100644 --- a/ksvg/data/SVGPatternElementImpl.lut.h +++ b/ksvg/data/SVGPatternElementImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGPatternElementImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGPatternElementImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGPointImpl.lut.h b/ksvg/data/SVGPointImpl.lut.h index c4b3c31d..98683b4a 100644 --- a/ksvg/data/SVGPointImpl.lut.h +++ b/ksvg/data/SVGPointImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGPointImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGPointImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGPointListImpl.lut.h b/ksvg/data/SVGPointListImpl.lut.h index d693900a..f7506e36 100644 --- a/ksvg/data/SVGPointListImpl.lut.h +++ b/ksvg/data/SVGPointListImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGPointListImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGPointListImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGPreserveAspectRatioImpl.lut.h b/ksvg/data/SVGPreserveAspectRatioImpl.lut.h index 944fe692..080a796a 100644 --- a/ksvg/data/SVGPreserveAspectRatioImpl.lut.h +++ b/ksvg/data/SVGPreserveAspectRatioImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGPreserveAspectRatioImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGPreserveAspectRatioImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGRadialGradientElementImpl.lut.h b/ksvg/data/SVGRadialGradientElementImpl.lut.h index 0cada147..dc927ea4 100644 --- a/ksvg/data/SVGRadialGradientElementImpl.lut.h +++ b/ksvg/data/SVGRadialGradientElementImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGRadialGradientElementImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGRadialGradientElementImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGRectElementImpl.lut.h b/ksvg/data/SVGRectElementImpl.lut.h index a20e808e..d0df0902 100644 --- a/ksvg/data/SVGRectElementImpl.lut.h +++ b/ksvg/data/SVGRectElementImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGRectElementImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGRectElementImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGRectImpl.lut.h b/ksvg/data/SVGRectImpl.lut.h index 9480824a..c92d6f59 100644 --- a/ksvg/data/SVGRectImpl.lut.h +++ b/ksvg/data/SVGRectImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGRectImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGRectImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGSVGElementImpl.lut.h b/ksvg/data/SVGSVGElementImpl.lut.h index 9666e6f9..a3774004 100644 --- a/ksvg/data/SVGSVGElementImpl.lut.h +++ b/ksvg/data/SVGSVGElementImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGSVGElementImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGSVGElementImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGScriptElementImpl.lut.h b/ksvg/data/SVGScriptElementImpl.lut.h index af7c480b..175d43a5 100644 --- a/ksvg/data/SVGScriptElementImpl.lut.h +++ b/ksvg/data/SVGScriptElementImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGScriptElementImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGScriptElementImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGStopElementImpl.lut.h b/ksvg/data/SVGStopElementImpl.lut.h index 9aa2ee3c..85f8467c 100644 --- a/ksvg/data/SVGStopElementImpl.lut.h +++ b/ksvg/data/SVGStopElementImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGStopElementImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGStopElementImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGStringListImpl.lut.h b/ksvg/data/SVGStringListImpl.lut.h index 84f734d6..a1e170d8 100644 --- a/ksvg/data/SVGStringListImpl.lut.h +++ b/ksvg/data/SVGStringListImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGStringListImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGStringListImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGStylableImpl.lut.h b/ksvg/data/SVGStylableImpl.lut.h index 838001a7..4df9c0ed 100644 --- a/ksvg/data/SVGStylableImpl.lut.h +++ b/ksvg/data/SVGStylableImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGStylableImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGStylableImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGStyleElementImpl.lut.h b/ksvg/data/SVGStyleElementImpl.lut.h index 230402a9..2d06559a 100644 --- a/ksvg/data/SVGStyleElementImpl.lut.h +++ b/ksvg/data/SVGStyleElementImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGStyleElementImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGStyleElementImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGSymbolElementImpl.lut.h b/ksvg/data/SVGSymbolElementImpl.lut.h index 1b2b0888..b24274be 100644 --- a/ksvg/data/SVGSymbolElementImpl.lut.h +++ b/ksvg/data/SVGSymbolElementImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGSymbolElementImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGSymbolElementImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGTestsImpl.lut.h b/ksvg/data/SVGTestsImpl.lut.h index 15bb4518..87bef91f 100644 --- a/ksvg/data/SVGTestsImpl.lut.h +++ b/ksvg/data/SVGTestsImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGTestsImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGTestsImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGTextContentElementImpl.lut.h b/ksvg/data/SVGTextContentElementImpl.lut.h index a8710d9a..7a122dc7 100644 --- a/ksvg/data/SVGTextContentElementImpl.lut.h +++ b/ksvg/data/SVGTextContentElementImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGTextContentElementImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGTextContentElementImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGTextPathElementImpl.lut.h b/ksvg/data/SVGTextPathElementImpl.lut.h index d9986d91..9ec2dd2c 100644 --- a/ksvg/data/SVGTextPathElementImpl.lut.h +++ b/ksvg/data/SVGTextPathElementImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGTextPathElementImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGTextPathElementImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGTextPositioningElementImpl.lut.h b/ksvg/data/SVGTextPositioningElementImpl.lut.h index 77f6dae3..cf37e411 100644 --- a/ksvg/data/SVGTextPositioningElementImpl.lut.h +++ b/ksvg/data/SVGTextPositioningElementImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGTextPositioningElementImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGTextPositioningElementImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGTransformImpl.lut.h b/ksvg/data/SVGTransformImpl.lut.h index 50a5c7dd..75c5659f 100644 --- a/ksvg/data/SVGTransformImpl.lut.h +++ b/ksvg/data/SVGTransformImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGTransformImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGTransformImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGTransformListImpl.lut.h b/ksvg/data/SVGTransformListImpl.lut.h index 25af98e8..c7d2b7cd 100644 --- a/ksvg/data/SVGTransformListImpl.lut.h +++ b/ksvg/data/SVGTransformListImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGTransformListImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGTransformListImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGTransformableImpl.lut.h b/ksvg/data/SVGTransformableImpl.lut.h index 39dada09..f8573852 100644 --- a/ksvg/data/SVGTransformableImpl.lut.h +++ b/ksvg/data/SVGTransformableImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGTransformableImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGTransformableImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGURIReferenceImpl.lut.h b/ksvg/data/SVGURIReferenceImpl.lut.h index 7df7ccb4..053deb47 100644 --- a/ksvg/data/SVGURIReferenceImpl.lut.h +++ b/ksvg/data/SVGURIReferenceImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGURIReferenceImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGURIReferenceImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGUseElementImpl.lut.h b/ksvg/data/SVGUseElementImpl.lut.h index fe27d2b8..daad02bc 100644 --- a/ksvg/data/SVGUseElementImpl.lut.h +++ b/ksvg/data/SVGUseElementImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGUseElementImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGUseElementImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGViewElementImpl.lut.h b/ksvg/data/SVGViewElementImpl.lut.h index 2a40c677..666a4aa4 100644 --- a/ksvg/data/SVGViewElementImpl.lut.h +++ b/ksvg/data/SVGViewElementImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGViewElementImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGViewElementImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGZoomAndPanImpl.lut.h b/ksvg/data/SVGZoomAndPanImpl.lut.h index 80a647a6..71e3bba5 100644 --- a/ksvg/data/SVGZoomAndPanImpl.lut.h +++ b/ksvg/data/SVGZoomAndPanImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGZoomAndPanImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGZoomAndPanImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/data/SVGZoomEventImpl.lut.h b/ksvg/data/SVGZoomEventImpl.lut.h index 2b927ca3..29464130 100644 --- a/ksvg/data/SVGZoomEventImpl.lut.h +++ b/ksvg/data/SVGZoomEventImpl.lut.h @@ -1,4 +1,4 @@ -/* Automatically generated from impl/SVGZoomEventImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ +/* Automatically generated from impl/SVGZoomEventImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */ using namespace KJS; diff --git a/ksvg/dom/CMakeLists.txt b/ksvg/dom/CMakeLists.txt index 8d6658e9..08f0ab03 100644 --- a/ksvg/dom/CMakeLists.txt +++ b/ksvg/dom/CMakeLists.txt @@ -76,50 +76,50 @@ install( FILES tde_add_library( ksvgdom STATIC_PIC SOURCES - SVGLength.cc SVGAnimatedLength.cc SVGNumber.cc SVGAnimatedNumber.cc - SVGPoint.cc SVGTSpanElement.cc SVGTRefElement.cc SVGAnimatedLengthList.cc - SVGAnimatedNumberList.cc SVGTransformList.cc SVGAElement.cc - SVGAnimatedTransformList.cc SVGRectElement.cc SVGCircleElement.cc - SVGEllipseElement.cc SVGLineElement.cc SVGPolylineElement.cc - SVGPolygonElement.cc SVGTextPositioningElement.cc SVGTextContentElement.cc - SVGTextElement.cc SVGImageElement.cc SVGUseElement.cc SVGMatrix.cc - SVGTransform.cc SVGPointList.cc SVGDocument.cc SVGAnimatedEnumeration.cc - SVGDefsElement.cc SVGLocatable.cc SVGTransformable.cc SVGStylable.cc - SVGGElement.cc SVGAngle.cc SVGAnimatedAngle.cc SVGColor.cc SVGPathElement.cc - SVGPathSegList.cc SVGTests.cc SVGLangSpace.cc SVGStringList.cc SVGPathSeg.cc - SVGPathSegClosePath.cc SVGPathSegMoveto.cc SVGPathSegLinetoHorizontal.cc - SVGPathSegLinetoVertical.cc SVGPathSegLineto.cc SVGPathSegCurvetoCubic.cc - SVGDescElement.cc SVGTitleElement.cc SVGExternalResourcesRequired.cc - SVGAnimatedBoolean.cc SVGNumberList.cc SVGPathSegCurvetoCubicSmooth.cc - SVGPathSegCurvetoQuadratic.cc SVGAnimatedRect.cc SVGAnimatedString.cc - SVGPathSegCurvetoQuadraticSmooth.cc SVGPathSegArc.cc SVGURIReference.cc - SVGAnimatedInteger.cc SVGLengthList.cc SVGSVGElement.cc SVGRect.cc - SVGFitToViewBox.cc SVGAnimatedPreserveAspectRatio.cc SVGPreserveAspectRatio.cc - SVGElement.cc SVGStyleElement.cc SVGClipPathElement.cc SVGMaskElement.cc - SVGColorProfileElement.cc SVGColorProfileRule.cc SVGZoomAndPan.cc - SVGScriptElement.cc SVGSwitchElement.cc SVGSymbolElement.cc - SVGDefinitionSrcElement.cc SVGFontFaceElement.cc SVGFontFaceFormatElement.cc - SVGFontFaceNameElement.cc SVGFontFaceSrcElement.cc SVGHKernElement.cc - SVGMetadataElement.cc SVGVKernElement.cc SVGCursorElement.cc - SVGForeignObjectElement.cc SVGFontFaceUriElement.cc SVGElementInstance.cc - SVGElementInstanceList.cc SVGAnimatedPoints.cc SVGAnimatedPathData.cc - SVGMarkerElement.cc SVGViewSpec.cc SVGViewElement.cc SVGFilterElement.cc - SVGFilterPrimitiveStandardAttributes.cc SVGFEBlendElement.cc - SVGFEColorMatrixElement.cc SVGFEComponentTransferElement.cc - SVGComponentTransferFunctionElement.cc SVGFEFuncAElement.cc - SVGFEFuncBElement.cc SVGFEFuncGElement.cc SVGFEFuncRElement.cc - SVGFECompositeElement.cc SVGFEConvolveMatrixElement.cc SVGFEFloodElement.cc - SVGFEGaussianBlurElement.cc SVGFEDiffuseLightingElement.cc - SVGFEDistantLightElement.cc SVGFEPointLightElement.cc - SVGFESpotLightElement.cc SVGFEDisplacementMapElement.cc SVGFEMergeElement.cc - SVGFEMergeNodeElement.cc SVGFEImageElement.cc SVGFEMorphologyElement.cc - SVGFEOffsetElement.cc SVGFESpecularLightingElement.cc SVGFETileElement.cc - SVGFETurbulenceElement.cc SVGAnimationElement.cc SVGAnimateElement.cc - SVGSetElement.cc SVGAnimateMotionElement.cc SVGAnimateColorElement.cc - SVGAnimateTransformElement.cc SVGEvent.cc SVGZoomEvent.cc SVGICCColor.cc - SVGCSSRule.cc SVGGradientElement.cc SVGRadialGradientElement.cc - SVGLinearGradientElement.cc SVGStopElement.cc SVGPatternElement.cc - SVGMPathElement.cc SVGFontElement.cc SVGAltGlyphElement.cc - SVGGlyphRefElement.cc SVGAltGlyphDefElement.cc SVGGlyphElement.cc - SVGMissingGlyphElement.cc SVGPaint.cc SVGTextPathElement.cc SVGWindow.cc + SVGLength.cpp SVGAnimatedLength.cpp SVGNumber.cpp SVGAnimatedNumber.cpp + SVGPoint.cpp SVGTSpanElement.cpp SVGTRefElement.cpp SVGAnimatedLengthList.cpp + SVGAnimatedNumberList.cpp SVGTransformList.cpp SVGAElement.cpp + SVGAnimatedTransformList.cpp SVGRectElement.cpp SVGCircleElement.cpp + SVGEllipseElement.cpp SVGLineElement.cpp SVGPolylineElement.cpp + SVGPolygonElement.cpp SVGTextPositioningElement.cpp SVGTextContentElement.cpp + SVGTextElement.cpp SVGImageElement.cpp SVGUseElement.cpp SVGMatrix.cpp + SVGTransform.cpp SVGPointList.cpp SVGDocument.cpp SVGAnimatedEnumeration.cpp + SVGDefsElement.cpp SVGLocatable.cpp SVGTransformable.cpp SVGStylable.cpp + SVGGElement.cpp SVGAngle.cpp SVGAnimatedAngle.cpp SVGColor.cpp SVGPathElement.cpp + SVGPathSegList.cpp SVGTests.cpp SVGLangSpace.cpp SVGStringList.cpp SVGPathSeg.cpp + SVGPathSegClosePath.cpp SVGPathSegMoveto.cpp SVGPathSegLinetoHorizontal.cpp + SVGPathSegLinetoVertical.cpp SVGPathSegLineto.cpp SVGPathSegCurvetoCubic.cpp + SVGDescElement.cpp SVGTitleElement.cpp SVGExternalResourcesRequired.cpp + SVGAnimatedBoolean.cpp SVGNumberList.cpp SVGPathSegCurvetoCubicSmooth.cpp + SVGPathSegCurvetoQuadratic.cpp SVGAnimatedRect.cpp SVGAnimatedString.cpp + SVGPathSegCurvetoQuadraticSmooth.cpp SVGPathSegArc.cpp SVGURIReference.cpp + SVGAnimatedInteger.cpp SVGLengthList.cpp SVGSVGElement.cpp SVGRect.cpp + SVGFitToViewBox.cpp SVGAnimatedPreserveAspectRatio.cpp SVGPreserveAspectRatio.cpp + SVGElement.cpp SVGStyleElement.cpp SVGClipPathElement.cpp SVGMaskElement.cpp + SVGColorProfileElement.cpp SVGColorProfileRule.cpp SVGZoomAndPan.cpp + SVGScriptElement.cpp SVGSwitchElement.cpp SVGSymbolElement.cpp + SVGDefinitionSrcElement.cpp SVGFontFaceElement.cpp SVGFontFaceFormatElement.cpp + SVGFontFaceNameElement.cpp SVGFontFaceSrcElement.cpp SVGHKernElement.cpp + SVGMetadataElement.cpp SVGVKernElement.cpp SVGCursorElement.cpp + SVGForeignObjectElement.cpp SVGFontFaceUriElement.cpp SVGElementInstance.cpp + SVGElementInstanceList.cpp SVGAnimatedPoints.cpp SVGAnimatedPathData.cpp + SVGMarkerElement.cpp SVGViewSpec.cpp SVGViewElement.cpp SVGFilterElement.cpp + SVGFilterPrimitiveStandardAttributes.cpp SVGFEBlendElement.cpp + SVGFEColorMatrixElement.cpp SVGFEComponentTransferElement.cpp + SVGComponentTransferFunctionElement.cpp SVGFEFuncAElement.cpp + SVGFEFuncBElement.cpp SVGFEFuncGElement.cpp SVGFEFuncRElement.cpp + SVGFECompositeElement.cpp SVGFEConvolveMatrixElement.cpp SVGFEFloodElement.cpp + SVGFEGaussianBlurElement.cpp SVGFEDiffuseLightingElement.cpp + SVGFEDistantLightElement.cpp SVGFEPointLightElement.cpp + SVGFESpotLightElement.cpp SVGFEDisplacementMapElement.cpp SVGFEMergeElement.cpp + SVGFEMergeNodeElement.cpp SVGFEImageElement.cpp SVGFEMorphologyElement.cpp + SVGFEOffsetElement.cpp SVGFESpecularLightingElement.cpp SVGFETileElement.cpp + SVGFETurbulenceElement.cpp SVGAnimationElement.cpp SVGAnimateElement.cpp + SVGSetElement.cpp SVGAnimateMotionElement.cpp SVGAnimateColorElement.cpp + SVGAnimateTransformElement.cpp SVGEvent.cpp SVGZoomEvent.cpp SVGICCColor.cpp + SVGCSSRule.cpp SVGGradientElement.cpp SVGRadialGradientElement.cpp + SVGLinearGradientElement.cpp SVGStopElement.cpp SVGPatternElement.cpp + SVGMPathElement.cpp SVGFontElement.cpp SVGAltGlyphElement.cpp + SVGGlyphRefElement.cpp SVGAltGlyphDefElement.cpp SVGGlyphElement.cpp + SVGMissingGlyphElement.cpp SVGPaint.cpp SVGTextPathElement.cpp SVGWindow.cpp ) diff --git a/ksvg/dom/Makefile.am b/ksvg/dom/Makefile.am index 9b6b1cf7..7c51c022 100644 --- a/ksvg/dom/Makefile.am +++ b/ksvg/dom/Makefile.am @@ -31,27 +31,27 @@ myinclude_HEADERS = SVGAElement.h SVGAltGlyphElement.h SVGAltGlyphDefElement.h S SVGTitleElement.h SVGTransform.h SVGTransformList.h SVGTransformable.h SVGURIReference.h SVGUnitTypes.h \ SVGUseElement.h SVGVKernElement.h SVGViewElement.h SVGViewSpec.h SVGWindow.h SVGZoomAndPan.h SVGZoomEvent.h -libksvgdom_la_SOURCES = SVGLength.cc SVGAnimatedLength.cc SVGNumber.cc SVGAnimatedNumber.cc SVGPoint.cc SVGTSpanElement.cc SVGTRefElement.cc \ - SVGAnimatedLengthList.cc SVGAnimatedNumberList.cc SVGTransformList.cc SVGAElement.cc SVGAnimatedTransformList.cc \ - SVGRectElement.cc SVGCircleElement.cc SVGEllipseElement.cc SVGLineElement.cc SVGPolylineElement.cc SVGPolygonElement.cc \ - SVGTextPositioningElement.cc SVGTextContentElement.cc SVGTextElement.cc SVGImageElement.cc SVGUseElement.cc \ - SVGMatrix.cc SVGTransform.cc SVGPointList.cc SVGDocument.cc SVGAnimatedEnumeration.cc SVGDefsElement.cc \ - SVGLocatable.cc SVGTransformable.cc SVGStylable.cc SVGGElement.cc SVGAngle.cc SVGAnimatedAngle.cc \ - SVGColor.cc SVGPathElement.cc SVGPathSegList.cc SVGTests.cc SVGLangSpace.cc SVGStringList.cc \ - SVGPathSeg.cc SVGPathSegClosePath.cc SVGPathSegMoveto.cc SVGPathSegLinetoHorizontal.cc SVGPathSegLinetoVertical.cc SVGPathSegLineto.cc \ - SVGPathSegCurvetoCubic.cc SVGDescElement.cc SVGTitleElement.cc SVGExternalResourcesRequired.cc SVGAnimatedBoolean.cc SVGNumberList.cc \ - SVGPathSegCurvetoCubicSmooth.cc SVGPathSegCurvetoQuadratic.cc SVGAnimatedRect.cc SVGAnimatedString.cc \ - SVGPathSegCurvetoQuadraticSmooth.cc SVGPathSegArc.cc SVGURIReference.cc SVGAnimatedInteger.cc SVGLengthList.cc \ - SVGSVGElement.cc SVGRect.cc SVGFitToViewBox.cc SVGAnimatedPreserveAspectRatio.cc SVGPreserveAspectRatio.cc SVGElement.cc \ - SVGStyleElement.cc SVGClipPathElement.cc SVGMaskElement.cc SVGColorProfileElement.cc SVGColorProfileRule.cc SVGZoomAndPan.cc SVGScriptElement.cc \ - SVGSwitchElement.cc SVGSymbolElement.cc \ - SVGDefinitionSrcElement.cc SVGFontFaceElement.cc SVGFontFaceFormatElement.cc SVGFontFaceNameElement.cc SVGFontFaceSrcElement.cc SVGHKernElement.cc SVGMetadataElement.cc SVGVKernElement.cc SVGCursorElement.cc SVGForeignObjectElement.cc SVGFontFaceUriElement.cc \ - SVGElementInstance.cc SVGElementInstanceList.cc SVGAnimatedPoints.cc SVGAnimatedPathData.cc SVGMarkerElement.cc SVGViewSpec.cc SVGViewElement.cc \ - SVGFilterElement.cc SVGFilterPrimitiveStandardAttributes.cc SVGFEBlendElement.cc SVGFEColorMatrixElement.cc SVGFEComponentTransferElement.cc SVGComponentTransferFunctionElement.cc SVGFEFuncAElement.cc SVGFEFuncBElement.cc SVGFEFuncGElement.cc SVGFEFuncRElement.cc SVGFECompositeElement.cc SVGFEConvolveMatrixElement.cc SVGFEFloodElement.cc SVGFEGaussianBlurElement.cc SVGFEDiffuseLightingElement.cc SVGFEDistantLightElement.cc SVGFEPointLightElement.cc SVGFESpotLightElement.cc SVGFEDisplacementMapElement.cc SVGFEMergeElement.cc SVGFEMergeNodeElement.cc SVGFEImageElement.cc SVGFEMorphologyElement.cc SVGFEOffsetElement.cc SVGFESpecularLightingElement.cc SVGFETileElement.cc SVGFETurbulenceElement.cc \ - SVGAnimationElement.cc SVGAnimateElement.cc SVGSetElement.cc SVGAnimateMotionElement.cc SVGAnimateColorElement.cc SVGAnimateTransformElement.cc \ - SVGEvent.cc SVGZoomEvent.cc SVGICCColor.cc SVGCSSRule.cc \ - SVGGradientElement.cc SVGRadialGradientElement.cc SVGLinearGradientElement.cc SVGStopElement.cc SVGPatternElement.cc SVGMPathElement.cc \ - SVGFontElement.cc SVGAltGlyphElement.cc SVGGlyphRefElement.cc SVGAltGlyphDefElement.cc SVGGlyphElement.cc SVGMissingGlyphElement.cc SVGPaint.cc SVGTextPathElement.cc SVGWindow.cc +libksvgdom_la_SOURCES = SVGLength.cpp SVGAnimatedLength.cpp SVGNumber.cpp SVGAnimatedNumber.cpp SVGPoint.cpp SVGTSpanElement.cpp SVGTRefElement.cpp \ + SVGAnimatedLengthList.cpp SVGAnimatedNumberList.cpp SVGTransformList.cpp SVGAElement.cpp SVGAnimatedTransformList.cpp \ + SVGRectElement.cpp SVGCircleElement.cpp SVGEllipseElement.cpp SVGLineElement.cpp SVGPolylineElement.cpp SVGPolygonElement.cpp \ + SVGTextPositioningElement.cpp SVGTextContentElement.cpp SVGTextElement.cpp SVGImageElement.cpp SVGUseElement.cpp \ + SVGMatrix.cpp SVGTransform.cpp SVGPointList.cpp SVGDocument.cpp SVGAnimatedEnumeration.cpp SVGDefsElement.cpp \ + SVGLocatable.cpp SVGTransformable.cpp SVGStylable.cpp SVGGElement.cpp SVGAngle.cpp SVGAnimatedAngle.cpp \ + SVGColor.cpp SVGPathElement.cpp SVGPathSegList.cpp SVGTests.cpp SVGLangSpace.cpp SVGStringList.cpp \ + SVGPathSeg.cpp SVGPathSegClosePath.cpp SVGPathSegMoveto.cpp SVGPathSegLinetoHorizontal.cpp SVGPathSegLinetoVertical.cpp SVGPathSegLineto.cpp \ + SVGPathSegCurvetoCubic.cpp SVGDescElement.cpp SVGTitleElement.cpp SVGExternalResourcesRequired.cpp SVGAnimatedBoolean.cpp SVGNumberList.cpp \ + SVGPathSegCurvetoCubicSmooth.cpp SVGPathSegCurvetoQuadratic.cpp SVGAnimatedRect.cpp SVGAnimatedString.cpp \ + SVGPathSegCurvetoQuadraticSmooth.cpp SVGPathSegArc.cpp SVGURIReference.cpp SVGAnimatedInteger.cpp SVGLengthList.cpp \ + SVGSVGElement.cpp SVGRect.cpp SVGFitToViewBox.cpp SVGAnimatedPreserveAspectRatio.cpp SVGPreserveAspectRatio.cpp SVGElement.cpp \ + SVGStyleElement.cpp SVGClipPathElement.cpp SVGMaskElement.cpp SVGColorProfileElement.cpp SVGColorProfileRule.cpp SVGZoomAndPan.cpp SVGScriptElement.cpp \ + SVGSwitchElement.cpp SVGSymbolElement.cpp \ + SVGDefinitionSrcElement.cpp SVGFontFaceElement.cpp SVGFontFaceFormatElement.cpp SVGFontFaceNameElement.cpp SVGFontFaceSrcElement.cpp SVGHKernElement.cpp SVGMetadataElement.cpp SVGVKernElement.cpp SVGCursorElement.cpp SVGForeignObjectElement.cpp SVGFontFaceUriElement.cpp \ + SVGElementInstance.cpp SVGElementInstanceList.cpp SVGAnimatedPoints.cpp SVGAnimatedPathData.cpp SVGMarkerElement.cpp SVGViewSpec.cpp SVGViewElement.cpp \ + SVGFilterElement.cpp SVGFilterPrimitiveStandardAttributes.cpp SVGFEBlendElement.cpp SVGFEColorMatrixElement.cpp SVGFEComponentTransferElement.cpp SVGComponentTransferFunctionElement.cpp SVGFEFuncAElement.cpp SVGFEFuncBElement.cpp SVGFEFuncGElement.cpp SVGFEFuncRElement.cpp SVGFECompositeElement.cpp SVGFEConvolveMatrixElement.cpp SVGFEFloodElement.cpp SVGFEGaussianBlurElement.cpp SVGFEDiffuseLightingElement.cpp SVGFEDistantLightElement.cpp SVGFEPointLightElement.cpp SVGFESpotLightElement.cpp SVGFEDisplacementMapElement.cpp SVGFEMergeElement.cpp SVGFEMergeNodeElement.cpp SVGFEImageElement.cpp SVGFEMorphologyElement.cpp SVGFEOffsetElement.cpp SVGFESpecularLightingElement.cpp SVGFETileElement.cpp SVGFETurbulenceElement.cpp \ + SVGAnimationElement.cpp SVGAnimateElement.cpp SVGSetElement.cpp SVGAnimateMotionElement.cpp SVGAnimateColorElement.cpp SVGAnimateTransformElement.cpp \ + SVGEvent.cpp SVGZoomEvent.cpp SVGICCColor.cpp SVGCSSRule.cpp \ + SVGGradientElement.cpp SVGRadialGradientElement.cpp SVGLinearGradientElement.cpp SVGStopElement.cpp SVGPatternElement.cpp SVGMPathElement.cpp \ + SVGFontElement.cpp SVGAltGlyphElement.cpp SVGGlyphRefElement.cpp SVGAltGlyphDefElement.cpp SVGGlyphElement.cpp SVGMissingGlyphElement.cpp SVGPaint.cpp SVGTextPathElement.cpp SVGWindow.cpp libksvgdom_la_METASOURCES = AUTO diff --git a/ksvg/dom/SVGAElement.cc b/ksvg/dom/SVGAElement.cpp similarity index 100% rename from ksvg/dom/SVGAElement.cc rename to ksvg/dom/SVGAElement.cpp diff --git a/ksvg/dom/SVGAltGlyphDefElement.cc b/ksvg/dom/SVGAltGlyphDefElement.cpp similarity index 100% rename from ksvg/dom/SVGAltGlyphDefElement.cc rename to ksvg/dom/SVGAltGlyphDefElement.cpp diff --git a/ksvg/dom/SVGAltGlyphElement.cc b/ksvg/dom/SVGAltGlyphElement.cpp similarity index 100% rename from ksvg/dom/SVGAltGlyphElement.cc rename to ksvg/dom/SVGAltGlyphElement.cpp diff --git a/ksvg/dom/SVGAngle.cc b/ksvg/dom/SVGAngle.cpp similarity index 100% rename from ksvg/dom/SVGAngle.cc rename to ksvg/dom/SVGAngle.cpp diff --git a/ksvg/dom/SVGAnimateColorElement.cc b/ksvg/dom/SVGAnimateColorElement.cpp similarity index 100% rename from ksvg/dom/SVGAnimateColorElement.cc rename to ksvg/dom/SVGAnimateColorElement.cpp diff --git a/ksvg/dom/SVGAnimateElement.cc b/ksvg/dom/SVGAnimateElement.cpp similarity index 100% rename from ksvg/dom/SVGAnimateElement.cc rename to ksvg/dom/SVGAnimateElement.cpp diff --git a/ksvg/dom/SVGAnimateMotionElement.cc b/ksvg/dom/SVGAnimateMotionElement.cpp similarity index 100% rename from ksvg/dom/SVGAnimateMotionElement.cc rename to ksvg/dom/SVGAnimateMotionElement.cpp diff --git a/ksvg/dom/SVGAnimateTransformElement.cc b/ksvg/dom/SVGAnimateTransformElement.cpp similarity index 100% rename from ksvg/dom/SVGAnimateTransformElement.cc rename to ksvg/dom/SVGAnimateTransformElement.cpp diff --git a/ksvg/dom/SVGAnimatedAngle.cc b/ksvg/dom/SVGAnimatedAngle.cpp similarity index 100% rename from ksvg/dom/SVGAnimatedAngle.cc rename to ksvg/dom/SVGAnimatedAngle.cpp diff --git a/ksvg/dom/SVGAnimatedBoolean.cc b/ksvg/dom/SVGAnimatedBoolean.cpp similarity index 100% rename from ksvg/dom/SVGAnimatedBoolean.cc rename to ksvg/dom/SVGAnimatedBoolean.cpp diff --git a/ksvg/dom/SVGAnimatedEnumeration.cc b/ksvg/dom/SVGAnimatedEnumeration.cpp similarity index 100% rename from ksvg/dom/SVGAnimatedEnumeration.cc rename to ksvg/dom/SVGAnimatedEnumeration.cpp diff --git a/ksvg/dom/SVGAnimatedInteger.cc b/ksvg/dom/SVGAnimatedInteger.cpp similarity index 100% rename from ksvg/dom/SVGAnimatedInteger.cc rename to ksvg/dom/SVGAnimatedInteger.cpp diff --git a/ksvg/dom/SVGAnimatedLength.cc b/ksvg/dom/SVGAnimatedLength.cpp similarity index 100% rename from ksvg/dom/SVGAnimatedLength.cc rename to ksvg/dom/SVGAnimatedLength.cpp diff --git a/ksvg/dom/SVGAnimatedLengthList.cc b/ksvg/dom/SVGAnimatedLengthList.cpp similarity index 100% rename from ksvg/dom/SVGAnimatedLengthList.cc rename to ksvg/dom/SVGAnimatedLengthList.cpp diff --git a/ksvg/dom/SVGAnimatedNumber.cc b/ksvg/dom/SVGAnimatedNumber.cpp similarity index 100% rename from ksvg/dom/SVGAnimatedNumber.cc rename to ksvg/dom/SVGAnimatedNumber.cpp diff --git a/ksvg/dom/SVGAnimatedNumberList.cc b/ksvg/dom/SVGAnimatedNumberList.cpp similarity index 100% rename from ksvg/dom/SVGAnimatedNumberList.cc rename to ksvg/dom/SVGAnimatedNumberList.cpp diff --git a/ksvg/dom/SVGAnimatedPathData.cc b/ksvg/dom/SVGAnimatedPathData.cpp similarity index 100% rename from ksvg/dom/SVGAnimatedPathData.cc rename to ksvg/dom/SVGAnimatedPathData.cpp diff --git a/ksvg/dom/SVGAnimatedPoints.cc b/ksvg/dom/SVGAnimatedPoints.cpp similarity index 100% rename from ksvg/dom/SVGAnimatedPoints.cc rename to ksvg/dom/SVGAnimatedPoints.cpp diff --git a/ksvg/dom/SVGAnimatedPreserveAspectRatio.cc b/ksvg/dom/SVGAnimatedPreserveAspectRatio.cpp similarity index 100% rename from ksvg/dom/SVGAnimatedPreserveAspectRatio.cc rename to ksvg/dom/SVGAnimatedPreserveAspectRatio.cpp diff --git a/ksvg/dom/SVGAnimatedRect.cc b/ksvg/dom/SVGAnimatedRect.cpp similarity index 100% rename from ksvg/dom/SVGAnimatedRect.cc rename to ksvg/dom/SVGAnimatedRect.cpp diff --git a/ksvg/dom/SVGAnimatedString.cc b/ksvg/dom/SVGAnimatedString.cpp similarity index 100% rename from ksvg/dom/SVGAnimatedString.cc rename to ksvg/dom/SVGAnimatedString.cpp diff --git a/ksvg/dom/SVGAnimatedTransformList.cc b/ksvg/dom/SVGAnimatedTransformList.cpp similarity index 100% rename from ksvg/dom/SVGAnimatedTransformList.cc rename to ksvg/dom/SVGAnimatedTransformList.cpp diff --git a/ksvg/dom/SVGAnimationElement.cc b/ksvg/dom/SVGAnimationElement.cpp similarity index 100% rename from ksvg/dom/SVGAnimationElement.cc rename to ksvg/dom/SVGAnimationElement.cpp diff --git a/ksvg/dom/SVGCSSRule.cc b/ksvg/dom/SVGCSSRule.cpp similarity index 100% rename from ksvg/dom/SVGCSSRule.cc rename to ksvg/dom/SVGCSSRule.cpp diff --git a/ksvg/dom/SVGCircleElement.cc b/ksvg/dom/SVGCircleElement.cpp similarity index 100% rename from ksvg/dom/SVGCircleElement.cc rename to ksvg/dom/SVGCircleElement.cpp diff --git a/ksvg/dom/SVGClipPathElement.cc b/ksvg/dom/SVGClipPathElement.cpp similarity index 100% rename from ksvg/dom/SVGClipPathElement.cc rename to ksvg/dom/SVGClipPathElement.cpp diff --git a/ksvg/dom/SVGColor.cc b/ksvg/dom/SVGColor.cpp similarity index 100% rename from ksvg/dom/SVGColor.cc rename to ksvg/dom/SVGColor.cpp diff --git a/ksvg/dom/SVGColorProfileElement.cc b/ksvg/dom/SVGColorProfileElement.cpp similarity index 100% rename from ksvg/dom/SVGColorProfileElement.cc rename to ksvg/dom/SVGColorProfileElement.cpp diff --git a/ksvg/dom/SVGColorProfileRule.cc b/ksvg/dom/SVGColorProfileRule.cpp similarity index 100% rename from ksvg/dom/SVGColorProfileRule.cc rename to ksvg/dom/SVGColorProfileRule.cpp diff --git a/ksvg/dom/SVGComponentTransferFunctionElement.cc b/ksvg/dom/SVGComponentTransferFunctionElement.cpp similarity index 100% rename from ksvg/dom/SVGComponentTransferFunctionElement.cc rename to ksvg/dom/SVGComponentTransferFunctionElement.cpp diff --git a/ksvg/dom/SVGCursorElement.cc b/ksvg/dom/SVGCursorElement.cpp similarity index 100% rename from ksvg/dom/SVGCursorElement.cc rename to ksvg/dom/SVGCursorElement.cpp diff --git a/ksvg/dom/SVGDefinitionSrcElement.cc b/ksvg/dom/SVGDefinitionSrcElement.cpp similarity index 100% rename from ksvg/dom/SVGDefinitionSrcElement.cc rename to ksvg/dom/SVGDefinitionSrcElement.cpp diff --git a/ksvg/dom/SVGDefsElement.cc b/ksvg/dom/SVGDefsElement.cpp similarity index 100% rename from ksvg/dom/SVGDefsElement.cc rename to ksvg/dom/SVGDefsElement.cpp diff --git a/ksvg/dom/SVGDescElement.cc b/ksvg/dom/SVGDescElement.cpp similarity index 100% rename from ksvg/dom/SVGDescElement.cc rename to ksvg/dom/SVGDescElement.cpp diff --git a/ksvg/dom/SVGDocument.cc b/ksvg/dom/SVGDocument.cpp similarity index 100% rename from ksvg/dom/SVGDocument.cc rename to ksvg/dom/SVGDocument.cpp diff --git a/ksvg/dom/SVGElement.cc b/ksvg/dom/SVGElement.cpp similarity index 100% rename from ksvg/dom/SVGElement.cc rename to ksvg/dom/SVGElement.cpp diff --git a/ksvg/dom/SVGElementInstance.cc b/ksvg/dom/SVGElementInstance.cpp similarity index 100% rename from ksvg/dom/SVGElementInstance.cc rename to ksvg/dom/SVGElementInstance.cpp diff --git a/ksvg/dom/SVGElementInstanceList.cc b/ksvg/dom/SVGElementInstanceList.cpp similarity index 100% rename from ksvg/dom/SVGElementInstanceList.cc rename to ksvg/dom/SVGElementInstanceList.cpp diff --git a/ksvg/dom/SVGEllipseElement.cc b/ksvg/dom/SVGEllipseElement.cpp similarity index 100% rename from ksvg/dom/SVGEllipseElement.cc rename to ksvg/dom/SVGEllipseElement.cpp diff --git a/ksvg/dom/SVGEvent.cc b/ksvg/dom/SVGEvent.cpp similarity index 100% rename from ksvg/dom/SVGEvent.cc rename to ksvg/dom/SVGEvent.cpp diff --git a/ksvg/dom/SVGExternalResourcesRequired.cc b/ksvg/dom/SVGExternalResourcesRequired.cpp similarity index 100% rename from ksvg/dom/SVGExternalResourcesRequired.cc rename to ksvg/dom/SVGExternalResourcesRequired.cpp diff --git a/ksvg/dom/SVGFEBlendElement.cc b/ksvg/dom/SVGFEBlendElement.cpp similarity index 100% rename from ksvg/dom/SVGFEBlendElement.cc rename to ksvg/dom/SVGFEBlendElement.cpp diff --git a/ksvg/dom/SVGFEColorMatrixElement.cc b/ksvg/dom/SVGFEColorMatrixElement.cpp similarity index 100% rename from ksvg/dom/SVGFEColorMatrixElement.cc rename to ksvg/dom/SVGFEColorMatrixElement.cpp diff --git a/ksvg/dom/SVGFEComponentTransferElement.cc b/ksvg/dom/SVGFEComponentTransferElement.cpp similarity index 100% rename from ksvg/dom/SVGFEComponentTransferElement.cc rename to ksvg/dom/SVGFEComponentTransferElement.cpp diff --git a/ksvg/dom/SVGFECompositeElement.cc b/ksvg/dom/SVGFECompositeElement.cpp similarity index 100% rename from ksvg/dom/SVGFECompositeElement.cc rename to ksvg/dom/SVGFECompositeElement.cpp diff --git a/ksvg/dom/SVGFEConvolveMatrixElement.cc b/ksvg/dom/SVGFEConvolveMatrixElement.cpp similarity index 100% rename from ksvg/dom/SVGFEConvolveMatrixElement.cc rename to ksvg/dom/SVGFEConvolveMatrixElement.cpp diff --git a/ksvg/dom/SVGFEDiffuseLightingElement.cc b/ksvg/dom/SVGFEDiffuseLightingElement.cpp similarity index 100% rename from ksvg/dom/SVGFEDiffuseLightingElement.cc rename to ksvg/dom/SVGFEDiffuseLightingElement.cpp diff --git a/ksvg/dom/SVGFEDisplacementMapElement.cc b/ksvg/dom/SVGFEDisplacementMapElement.cpp similarity index 100% rename from ksvg/dom/SVGFEDisplacementMapElement.cc rename to ksvg/dom/SVGFEDisplacementMapElement.cpp diff --git a/ksvg/dom/SVGFEDistantLightElement.cc b/ksvg/dom/SVGFEDistantLightElement.cpp similarity index 100% rename from ksvg/dom/SVGFEDistantLightElement.cc rename to ksvg/dom/SVGFEDistantLightElement.cpp diff --git a/ksvg/dom/SVGFEFloodElement.cc b/ksvg/dom/SVGFEFloodElement.cpp similarity index 100% rename from ksvg/dom/SVGFEFloodElement.cc rename to ksvg/dom/SVGFEFloodElement.cpp diff --git a/ksvg/dom/SVGFEFuncAElement.cc b/ksvg/dom/SVGFEFuncAElement.cpp similarity index 100% rename from ksvg/dom/SVGFEFuncAElement.cc rename to ksvg/dom/SVGFEFuncAElement.cpp diff --git a/ksvg/dom/SVGFEFuncBElement.cc b/ksvg/dom/SVGFEFuncBElement.cpp similarity index 100% rename from ksvg/dom/SVGFEFuncBElement.cc rename to ksvg/dom/SVGFEFuncBElement.cpp diff --git a/ksvg/dom/SVGFEFuncGElement.cc b/ksvg/dom/SVGFEFuncGElement.cpp similarity index 100% rename from ksvg/dom/SVGFEFuncGElement.cc rename to ksvg/dom/SVGFEFuncGElement.cpp diff --git a/ksvg/dom/SVGFEFuncRElement.cc b/ksvg/dom/SVGFEFuncRElement.cpp similarity index 100% rename from ksvg/dom/SVGFEFuncRElement.cc rename to ksvg/dom/SVGFEFuncRElement.cpp diff --git a/ksvg/dom/SVGFEGaussianBlurElement.cc b/ksvg/dom/SVGFEGaussianBlurElement.cpp similarity index 100% rename from ksvg/dom/SVGFEGaussianBlurElement.cc rename to ksvg/dom/SVGFEGaussianBlurElement.cpp diff --git a/ksvg/dom/SVGFEImageElement.cc b/ksvg/dom/SVGFEImageElement.cpp similarity index 100% rename from ksvg/dom/SVGFEImageElement.cc rename to ksvg/dom/SVGFEImageElement.cpp diff --git a/ksvg/dom/SVGFEMergeElement.cc b/ksvg/dom/SVGFEMergeElement.cpp similarity index 100% rename from ksvg/dom/SVGFEMergeElement.cc rename to ksvg/dom/SVGFEMergeElement.cpp diff --git a/ksvg/dom/SVGFEMergeNodeElement.cc b/ksvg/dom/SVGFEMergeNodeElement.cpp similarity index 100% rename from ksvg/dom/SVGFEMergeNodeElement.cc rename to ksvg/dom/SVGFEMergeNodeElement.cpp diff --git a/ksvg/dom/SVGFEMorphologyElement.cc b/ksvg/dom/SVGFEMorphologyElement.cpp similarity index 100% rename from ksvg/dom/SVGFEMorphologyElement.cc rename to ksvg/dom/SVGFEMorphologyElement.cpp diff --git a/ksvg/dom/SVGFEOffsetElement.cc b/ksvg/dom/SVGFEOffsetElement.cpp similarity index 100% rename from ksvg/dom/SVGFEOffsetElement.cc rename to ksvg/dom/SVGFEOffsetElement.cpp diff --git a/ksvg/dom/SVGFEPointLightElement.cc b/ksvg/dom/SVGFEPointLightElement.cpp similarity index 100% rename from ksvg/dom/SVGFEPointLightElement.cc rename to ksvg/dom/SVGFEPointLightElement.cpp diff --git a/ksvg/dom/SVGFESpecularLightingElement.cc b/ksvg/dom/SVGFESpecularLightingElement.cpp similarity index 100% rename from ksvg/dom/SVGFESpecularLightingElement.cc rename to ksvg/dom/SVGFESpecularLightingElement.cpp diff --git a/ksvg/dom/SVGFESpotLightElement.cc b/ksvg/dom/SVGFESpotLightElement.cpp similarity index 100% rename from ksvg/dom/SVGFESpotLightElement.cc rename to ksvg/dom/SVGFESpotLightElement.cpp diff --git a/ksvg/dom/SVGFETileElement.cc b/ksvg/dom/SVGFETileElement.cpp similarity index 100% rename from ksvg/dom/SVGFETileElement.cc rename to ksvg/dom/SVGFETileElement.cpp diff --git a/ksvg/dom/SVGFETurbulenceElement.cc b/ksvg/dom/SVGFETurbulenceElement.cpp similarity index 100% rename from ksvg/dom/SVGFETurbulenceElement.cc rename to ksvg/dom/SVGFETurbulenceElement.cpp diff --git a/ksvg/dom/SVGFilterElement.cc b/ksvg/dom/SVGFilterElement.cpp similarity index 100% rename from ksvg/dom/SVGFilterElement.cc rename to ksvg/dom/SVGFilterElement.cpp diff --git a/ksvg/dom/SVGFilterPrimitiveStandardAttributes.cc b/ksvg/dom/SVGFilterPrimitiveStandardAttributes.cpp similarity index 100% rename from ksvg/dom/SVGFilterPrimitiveStandardAttributes.cc rename to ksvg/dom/SVGFilterPrimitiveStandardAttributes.cpp diff --git a/ksvg/dom/SVGFitToViewBox.cc b/ksvg/dom/SVGFitToViewBox.cpp similarity index 100% rename from ksvg/dom/SVGFitToViewBox.cc rename to ksvg/dom/SVGFitToViewBox.cpp diff --git a/ksvg/dom/SVGFontElement.cc b/ksvg/dom/SVGFontElement.cpp similarity index 100% rename from ksvg/dom/SVGFontElement.cc rename to ksvg/dom/SVGFontElement.cpp diff --git a/ksvg/dom/SVGFontFaceElement.cc b/ksvg/dom/SVGFontFaceElement.cpp similarity index 100% rename from ksvg/dom/SVGFontFaceElement.cc rename to ksvg/dom/SVGFontFaceElement.cpp diff --git a/ksvg/dom/SVGFontFaceFormatElement.cc b/ksvg/dom/SVGFontFaceFormatElement.cpp similarity index 100% rename from ksvg/dom/SVGFontFaceFormatElement.cc rename to ksvg/dom/SVGFontFaceFormatElement.cpp diff --git a/ksvg/dom/SVGFontFaceNameElement.cc b/ksvg/dom/SVGFontFaceNameElement.cpp similarity index 100% rename from ksvg/dom/SVGFontFaceNameElement.cc rename to ksvg/dom/SVGFontFaceNameElement.cpp diff --git a/ksvg/dom/SVGFontFaceSrcElement.cc b/ksvg/dom/SVGFontFaceSrcElement.cpp similarity index 100% rename from ksvg/dom/SVGFontFaceSrcElement.cc rename to ksvg/dom/SVGFontFaceSrcElement.cpp diff --git a/ksvg/dom/SVGFontFaceUriElement.cc b/ksvg/dom/SVGFontFaceUriElement.cpp similarity index 100% rename from ksvg/dom/SVGFontFaceUriElement.cc rename to ksvg/dom/SVGFontFaceUriElement.cpp diff --git a/ksvg/dom/SVGForeignObjectElement.cc b/ksvg/dom/SVGForeignObjectElement.cpp similarity index 100% rename from ksvg/dom/SVGForeignObjectElement.cc rename to ksvg/dom/SVGForeignObjectElement.cpp diff --git a/ksvg/dom/SVGGElement.cc b/ksvg/dom/SVGGElement.cpp similarity index 100% rename from ksvg/dom/SVGGElement.cc rename to ksvg/dom/SVGGElement.cpp diff --git a/ksvg/dom/SVGGlyphElement.cc b/ksvg/dom/SVGGlyphElement.cpp similarity index 100% rename from ksvg/dom/SVGGlyphElement.cc rename to ksvg/dom/SVGGlyphElement.cpp diff --git a/ksvg/dom/SVGGlyphRefElement.cc b/ksvg/dom/SVGGlyphRefElement.cpp similarity index 100% rename from ksvg/dom/SVGGlyphRefElement.cc rename to ksvg/dom/SVGGlyphRefElement.cpp diff --git a/ksvg/dom/SVGGradientElement.cc b/ksvg/dom/SVGGradientElement.cpp similarity index 100% rename from ksvg/dom/SVGGradientElement.cc rename to ksvg/dom/SVGGradientElement.cpp diff --git a/ksvg/dom/SVGHKernElement.cc b/ksvg/dom/SVGHKernElement.cpp similarity index 100% rename from ksvg/dom/SVGHKernElement.cc rename to ksvg/dom/SVGHKernElement.cpp diff --git a/ksvg/dom/SVGICCColor.cc b/ksvg/dom/SVGICCColor.cpp similarity index 100% rename from ksvg/dom/SVGICCColor.cc rename to ksvg/dom/SVGICCColor.cpp diff --git a/ksvg/dom/SVGImageElement.cc b/ksvg/dom/SVGImageElement.cpp similarity index 100% rename from ksvg/dom/SVGImageElement.cc rename to ksvg/dom/SVGImageElement.cpp diff --git a/ksvg/dom/SVGLangSpace.cc b/ksvg/dom/SVGLangSpace.cpp similarity index 100% rename from ksvg/dom/SVGLangSpace.cc rename to ksvg/dom/SVGLangSpace.cpp diff --git a/ksvg/dom/SVGLength.cc b/ksvg/dom/SVGLength.cpp similarity index 100% rename from ksvg/dom/SVGLength.cc rename to ksvg/dom/SVGLength.cpp diff --git a/ksvg/dom/SVGLengthList.cc b/ksvg/dom/SVGLengthList.cpp similarity index 100% rename from ksvg/dom/SVGLengthList.cc rename to ksvg/dom/SVGLengthList.cpp diff --git a/ksvg/dom/SVGLineElement.cc b/ksvg/dom/SVGLineElement.cpp similarity index 100% rename from ksvg/dom/SVGLineElement.cc rename to ksvg/dom/SVGLineElement.cpp diff --git a/ksvg/dom/SVGLinearGradientElement.cc b/ksvg/dom/SVGLinearGradientElement.cpp similarity index 100% rename from ksvg/dom/SVGLinearGradientElement.cc rename to ksvg/dom/SVGLinearGradientElement.cpp diff --git a/ksvg/dom/SVGLocatable.cc b/ksvg/dom/SVGLocatable.cpp similarity index 100% rename from ksvg/dom/SVGLocatable.cc rename to ksvg/dom/SVGLocatable.cpp diff --git a/ksvg/dom/SVGMPathElement.cc b/ksvg/dom/SVGMPathElement.cpp similarity index 100% rename from ksvg/dom/SVGMPathElement.cc rename to ksvg/dom/SVGMPathElement.cpp diff --git a/ksvg/dom/SVGMarkerElement.cc b/ksvg/dom/SVGMarkerElement.cpp similarity index 100% rename from ksvg/dom/SVGMarkerElement.cc rename to ksvg/dom/SVGMarkerElement.cpp diff --git a/ksvg/dom/SVGMaskElement.cc b/ksvg/dom/SVGMaskElement.cpp similarity index 100% rename from ksvg/dom/SVGMaskElement.cc rename to ksvg/dom/SVGMaskElement.cpp diff --git a/ksvg/dom/SVGMatrix.cc b/ksvg/dom/SVGMatrix.cpp similarity index 100% rename from ksvg/dom/SVGMatrix.cc rename to ksvg/dom/SVGMatrix.cpp diff --git a/ksvg/dom/SVGMetadataElement.cc b/ksvg/dom/SVGMetadataElement.cpp similarity index 100% rename from ksvg/dom/SVGMetadataElement.cc rename to ksvg/dom/SVGMetadataElement.cpp diff --git a/ksvg/dom/SVGMissingGlyphElement.cc b/ksvg/dom/SVGMissingGlyphElement.cpp similarity index 100% rename from ksvg/dom/SVGMissingGlyphElement.cc rename to ksvg/dom/SVGMissingGlyphElement.cpp diff --git a/ksvg/dom/SVGNumber.cc b/ksvg/dom/SVGNumber.cpp similarity index 100% rename from ksvg/dom/SVGNumber.cc rename to ksvg/dom/SVGNumber.cpp diff --git a/ksvg/dom/SVGNumberList.cc b/ksvg/dom/SVGNumberList.cpp similarity index 100% rename from ksvg/dom/SVGNumberList.cc rename to ksvg/dom/SVGNumberList.cpp diff --git a/ksvg/dom/SVGPaint.cc b/ksvg/dom/SVGPaint.cpp similarity index 100% rename from ksvg/dom/SVGPaint.cc rename to ksvg/dom/SVGPaint.cpp diff --git a/ksvg/dom/SVGPathElement.cc b/ksvg/dom/SVGPathElement.cpp similarity index 100% rename from ksvg/dom/SVGPathElement.cc rename to ksvg/dom/SVGPathElement.cpp diff --git a/ksvg/dom/SVGPathSeg.cc b/ksvg/dom/SVGPathSeg.cpp similarity index 100% rename from ksvg/dom/SVGPathSeg.cc rename to ksvg/dom/SVGPathSeg.cpp diff --git a/ksvg/dom/SVGPathSegArc.cc b/ksvg/dom/SVGPathSegArc.cpp similarity index 100% rename from ksvg/dom/SVGPathSegArc.cc rename to ksvg/dom/SVGPathSegArc.cpp diff --git a/ksvg/dom/SVGPathSegClosePath.cc b/ksvg/dom/SVGPathSegClosePath.cpp similarity index 100% rename from ksvg/dom/SVGPathSegClosePath.cc rename to ksvg/dom/SVGPathSegClosePath.cpp diff --git a/ksvg/dom/SVGPathSegCurvetoCubic.cc b/ksvg/dom/SVGPathSegCurvetoCubic.cpp similarity index 100% rename from ksvg/dom/SVGPathSegCurvetoCubic.cc rename to ksvg/dom/SVGPathSegCurvetoCubic.cpp diff --git a/ksvg/dom/SVGPathSegCurvetoCubicSmooth.cc b/ksvg/dom/SVGPathSegCurvetoCubicSmooth.cpp similarity index 100% rename from ksvg/dom/SVGPathSegCurvetoCubicSmooth.cc rename to ksvg/dom/SVGPathSegCurvetoCubicSmooth.cpp diff --git a/ksvg/dom/SVGPathSegCurvetoQuadratic.cc b/ksvg/dom/SVGPathSegCurvetoQuadratic.cpp similarity index 100% rename from ksvg/dom/SVGPathSegCurvetoQuadratic.cc rename to ksvg/dom/SVGPathSegCurvetoQuadratic.cpp diff --git a/ksvg/dom/SVGPathSegCurvetoQuadraticSmooth.cc b/ksvg/dom/SVGPathSegCurvetoQuadraticSmooth.cpp similarity index 100% rename from ksvg/dom/SVGPathSegCurvetoQuadraticSmooth.cc rename to ksvg/dom/SVGPathSegCurvetoQuadraticSmooth.cpp diff --git a/ksvg/dom/SVGPathSegLineto.cc b/ksvg/dom/SVGPathSegLineto.cpp similarity index 100% rename from ksvg/dom/SVGPathSegLineto.cc rename to ksvg/dom/SVGPathSegLineto.cpp diff --git a/ksvg/dom/SVGPathSegLinetoHorizontal.cc b/ksvg/dom/SVGPathSegLinetoHorizontal.cpp similarity index 100% rename from ksvg/dom/SVGPathSegLinetoHorizontal.cc rename to ksvg/dom/SVGPathSegLinetoHorizontal.cpp diff --git a/ksvg/dom/SVGPathSegLinetoVertical.cc b/ksvg/dom/SVGPathSegLinetoVertical.cpp similarity index 100% rename from ksvg/dom/SVGPathSegLinetoVertical.cc rename to ksvg/dom/SVGPathSegLinetoVertical.cpp diff --git a/ksvg/dom/SVGPathSegList.cc b/ksvg/dom/SVGPathSegList.cpp similarity index 100% rename from ksvg/dom/SVGPathSegList.cc rename to ksvg/dom/SVGPathSegList.cpp diff --git a/ksvg/dom/SVGPathSegMoveto.cc b/ksvg/dom/SVGPathSegMoveto.cpp similarity index 100% rename from ksvg/dom/SVGPathSegMoveto.cc rename to ksvg/dom/SVGPathSegMoveto.cpp diff --git a/ksvg/dom/SVGPatternElement.cc b/ksvg/dom/SVGPatternElement.cpp similarity index 100% rename from ksvg/dom/SVGPatternElement.cc rename to ksvg/dom/SVGPatternElement.cpp diff --git a/ksvg/dom/SVGPoint.cc b/ksvg/dom/SVGPoint.cpp similarity index 100% rename from ksvg/dom/SVGPoint.cc rename to ksvg/dom/SVGPoint.cpp diff --git a/ksvg/dom/SVGPointList.cc b/ksvg/dom/SVGPointList.cpp similarity index 100% rename from ksvg/dom/SVGPointList.cc rename to ksvg/dom/SVGPointList.cpp diff --git a/ksvg/dom/SVGPolygonElement.cc b/ksvg/dom/SVGPolygonElement.cpp similarity index 100% rename from ksvg/dom/SVGPolygonElement.cc rename to ksvg/dom/SVGPolygonElement.cpp diff --git a/ksvg/dom/SVGPolylineElement.cc b/ksvg/dom/SVGPolylineElement.cpp similarity index 100% rename from ksvg/dom/SVGPolylineElement.cc rename to ksvg/dom/SVGPolylineElement.cpp diff --git a/ksvg/dom/SVGPreserveAspectRatio.cc b/ksvg/dom/SVGPreserveAspectRatio.cpp similarity index 100% rename from ksvg/dom/SVGPreserveAspectRatio.cc rename to ksvg/dom/SVGPreserveAspectRatio.cpp diff --git a/ksvg/dom/SVGRadialGradientElement.cc b/ksvg/dom/SVGRadialGradientElement.cpp similarity index 100% rename from ksvg/dom/SVGRadialGradientElement.cc rename to ksvg/dom/SVGRadialGradientElement.cpp diff --git a/ksvg/dom/SVGRect.cc b/ksvg/dom/SVGRect.cpp similarity index 100% rename from ksvg/dom/SVGRect.cc rename to ksvg/dom/SVGRect.cpp diff --git a/ksvg/dom/SVGRectElement.cc b/ksvg/dom/SVGRectElement.cpp similarity index 100% rename from ksvg/dom/SVGRectElement.cc rename to ksvg/dom/SVGRectElement.cpp diff --git a/ksvg/dom/SVGSVGElement.cc b/ksvg/dom/SVGSVGElement.cpp similarity index 100% rename from ksvg/dom/SVGSVGElement.cc rename to ksvg/dom/SVGSVGElement.cpp diff --git a/ksvg/dom/SVGScriptElement.cc b/ksvg/dom/SVGScriptElement.cpp similarity index 100% rename from ksvg/dom/SVGScriptElement.cc rename to ksvg/dom/SVGScriptElement.cpp diff --git a/ksvg/dom/SVGSetElement.cc b/ksvg/dom/SVGSetElement.cpp similarity index 100% rename from ksvg/dom/SVGSetElement.cc rename to ksvg/dom/SVGSetElement.cpp diff --git a/ksvg/dom/SVGStopElement.cc b/ksvg/dom/SVGStopElement.cpp similarity index 100% rename from ksvg/dom/SVGStopElement.cc rename to ksvg/dom/SVGStopElement.cpp diff --git a/ksvg/dom/SVGStringList.cc b/ksvg/dom/SVGStringList.cpp similarity index 100% rename from ksvg/dom/SVGStringList.cc rename to ksvg/dom/SVGStringList.cpp diff --git a/ksvg/dom/SVGStylable.cc b/ksvg/dom/SVGStylable.cpp similarity index 100% rename from ksvg/dom/SVGStylable.cc rename to ksvg/dom/SVGStylable.cpp diff --git a/ksvg/dom/SVGStyleElement.cc b/ksvg/dom/SVGStyleElement.cpp similarity index 100% rename from ksvg/dom/SVGStyleElement.cc rename to ksvg/dom/SVGStyleElement.cpp diff --git a/ksvg/dom/SVGSwitchElement.cc b/ksvg/dom/SVGSwitchElement.cpp similarity index 100% rename from ksvg/dom/SVGSwitchElement.cc rename to ksvg/dom/SVGSwitchElement.cpp diff --git a/ksvg/dom/SVGSymbolElement.cc b/ksvg/dom/SVGSymbolElement.cpp similarity index 100% rename from ksvg/dom/SVGSymbolElement.cc rename to ksvg/dom/SVGSymbolElement.cpp diff --git a/ksvg/dom/SVGTRefElement.cc b/ksvg/dom/SVGTRefElement.cpp similarity index 100% rename from ksvg/dom/SVGTRefElement.cc rename to ksvg/dom/SVGTRefElement.cpp diff --git a/ksvg/dom/SVGTSpanElement.cc b/ksvg/dom/SVGTSpanElement.cpp similarity index 100% rename from ksvg/dom/SVGTSpanElement.cc rename to ksvg/dom/SVGTSpanElement.cpp diff --git a/ksvg/dom/SVGTests.cc b/ksvg/dom/SVGTests.cpp similarity index 100% rename from ksvg/dom/SVGTests.cc rename to ksvg/dom/SVGTests.cpp diff --git a/ksvg/dom/SVGTextContentElement.cc b/ksvg/dom/SVGTextContentElement.cpp similarity index 100% rename from ksvg/dom/SVGTextContentElement.cc rename to ksvg/dom/SVGTextContentElement.cpp diff --git a/ksvg/dom/SVGTextElement.cc b/ksvg/dom/SVGTextElement.cpp similarity index 100% rename from ksvg/dom/SVGTextElement.cc rename to ksvg/dom/SVGTextElement.cpp diff --git a/ksvg/dom/SVGTextPathElement.cc b/ksvg/dom/SVGTextPathElement.cpp similarity index 100% rename from ksvg/dom/SVGTextPathElement.cc rename to ksvg/dom/SVGTextPathElement.cpp diff --git a/ksvg/dom/SVGTextPositioningElement.cc b/ksvg/dom/SVGTextPositioningElement.cpp similarity index 100% rename from ksvg/dom/SVGTextPositioningElement.cc rename to ksvg/dom/SVGTextPositioningElement.cpp diff --git a/ksvg/dom/SVGTitleElement.cc b/ksvg/dom/SVGTitleElement.cpp similarity index 100% rename from ksvg/dom/SVGTitleElement.cc rename to ksvg/dom/SVGTitleElement.cpp diff --git a/ksvg/dom/SVGTransform.cc b/ksvg/dom/SVGTransform.cpp similarity index 100% rename from ksvg/dom/SVGTransform.cc rename to ksvg/dom/SVGTransform.cpp diff --git a/ksvg/dom/SVGTransformList.cc b/ksvg/dom/SVGTransformList.cpp similarity index 100% rename from ksvg/dom/SVGTransformList.cc rename to ksvg/dom/SVGTransformList.cpp diff --git a/ksvg/dom/SVGTransformable.cc b/ksvg/dom/SVGTransformable.cpp similarity index 100% rename from ksvg/dom/SVGTransformable.cc rename to ksvg/dom/SVGTransformable.cpp diff --git a/ksvg/dom/SVGURIReference.cc b/ksvg/dom/SVGURIReference.cpp similarity index 100% rename from ksvg/dom/SVGURIReference.cc rename to ksvg/dom/SVGURIReference.cpp diff --git a/ksvg/dom/SVGUseElement.cc b/ksvg/dom/SVGUseElement.cpp similarity index 100% rename from ksvg/dom/SVGUseElement.cc rename to ksvg/dom/SVGUseElement.cpp diff --git a/ksvg/dom/SVGVKernElement.cc b/ksvg/dom/SVGVKernElement.cpp similarity index 100% rename from ksvg/dom/SVGVKernElement.cc rename to ksvg/dom/SVGVKernElement.cpp diff --git a/ksvg/dom/SVGViewElement.cc b/ksvg/dom/SVGViewElement.cpp similarity index 100% rename from ksvg/dom/SVGViewElement.cc rename to ksvg/dom/SVGViewElement.cpp diff --git a/ksvg/dom/SVGViewSpec.cc b/ksvg/dom/SVGViewSpec.cpp similarity index 100% rename from ksvg/dom/SVGViewSpec.cc rename to ksvg/dom/SVGViewSpec.cpp diff --git a/ksvg/dom/SVGWindow.cc b/ksvg/dom/SVGWindow.cpp similarity index 100% rename from ksvg/dom/SVGWindow.cc rename to ksvg/dom/SVGWindow.cpp diff --git a/ksvg/dom/SVGZoomAndPan.cc b/ksvg/dom/SVGZoomAndPan.cpp similarity index 100% rename from ksvg/dom/SVGZoomAndPan.cc rename to ksvg/dom/SVGZoomAndPan.cpp diff --git a/ksvg/dom/SVGZoomEvent.cc b/ksvg/dom/SVGZoomEvent.cpp similarity index 100% rename from ksvg/dom/SVGZoomEvent.cc rename to ksvg/dom/SVGZoomEvent.cpp diff --git a/ksvg/impl/CMakeLists.txt b/ksvg/impl/CMakeLists.txt index 64599da1..82980a01 100644 --- a/ksvg/impl/CMakeLists.txt +++ b/ksvg/impl/CMakeLists.txt @@ -30,64 +30,64 @@ include_directories( tde_add_library( ksvgdomimpl STATIC_PIC AUTOMOC SOURCES - SVGLengthImpl.cc SVGNumberImpl.cc SVGPointImpl.cc SVGTransformImpl.cc - SVGMatrixImpl.cc SVGRectImpl.cc SVGAngleImpl.cc SVGAnimatedLengthImpl.cc - SVGAnimatedNumberImpl.cc SVGAnimatedIntegerImpl.cc SVGAnimatedBooleanImpl.cc - SVGAnimatedEnumerationImpl.cc SVGAnimatedPreserveAspectRatioImpl.cc - SVGAnimatedRectImpl.cc SVGAnimatedAngleImpl.cc SVGAnimatedPathDataImpl.cc - SVGAnimatedStringImpl.cc SVGLengthListImpl.cc SVGNumberListImpl.cc - SVGPointListImpl.cc SVGTransformListImpl.cc SVGStringListImpl.cc - SVGPathSegListImpl.cc SVGElementInstanceListImpl.cc - SVGAnimatedLengthListImpl.cc SVGAnimatedNumberListImpl.cc - SVGAnimatedPointsImpl.cc SVGAnimatedTransformListImpl.cc - SVGShapeImpl.cc SVGContainerImpl.cc SVGBBoxTarget.cc SVGHelperImpl.cc - SVGStylableImpl.cc SVGTransformableImpl.cc SVGTestsImpl.cc SVGLangSpaceImpl.cc - SVGExternalResourcesRequiredImpl.cc SVGLocatableImpl.cc SVGFitToViewBoxImpl.cc - SVGPreserveAspectRatioImpl.cc SVGZoomAndPanImpl.cc SVGViewSpecImpl.cc - SVGElementImpl.cc SVGElementInstanceImpl.cc SVGDocumentImpl.cc - SVGSVGElementImpl.cc SVGWindowImpl.cc SVGDefsElementImpl.cc - SVGUseElementImpl.cc SVGDescElementImpl.cc SVGTitleElementImpl.cc - SVGGElementImpl.cc SVGSwitchElementImpl.cc SVGSymbolElementImpl.cc - SVGImageElementImpl.cc SVGURIReferenceImpl.cc SVGStyleElementImpl.cc - SVGCSSRuleImpl.cc SVGPathElementImpl.cc SVGPathSegImpl.cc - SVGPathSegClosePathImpl.cc SVGPathSegArcImpl.cc SVGPathSegMovetoImpl.cc - SVGPathSegCurvetoQuadraticImpl.cc SVGPathSegCurvetoQuadraticSmoothImpl.cc - SVGPathSegCurvetoCubicImpl.cc SVGPathSegCurvetoCubicSmoothImpl.cc - SVGPathSegLinetoImpl.cc SVGPathSegLinetoHorizontalImpl.cc - SVGPathSegLinetoVerticalImpl.cc SVGRectElementImpl.cc SVGCircleElementImpl.cc - SVGEllipseElementImpl.cc SVGLineElementImpl.cc SVGPolyElementImpl.cc - SVGPolylineElementImpl.cc SVGPolygonElementImpl.cc SVGTextElementImpl.cc - SVGTSpanElementImpl.cc SVGTRefElementImpl.cc SVGTextPositioningElementImpl.cc - SVGTextContentElementImpl.cc SVGTextPathElementImpl.cc SVGPaintImpl.cc - SVGMarkerElementImpl.cc SVGColorImpl.cc SVGICCColorImpl.cc - SVGColorProfileElementImpl.cc SVGColorProfileRuleImpl.cc SVGPaintServerImpl.cc - SVGGradientElementImpl.cc SVGStopElementImpl.cc SVGLinearGradientElementImpl.cc - SVGRadialGradientElementImpl.cc SVGPatternElementImpl.cc - SVGClipPathElementImpl.cc SVGMaskElementImpl.cc SVGFilterElementImpl.cc - SVGFilterPrimitiveStandardAttributesImpl.cc SVGFEBlendElementImpl.cc - SVGFEColorMatrixElementImpl.cc SVGFEComponentTransferElementImpl.cc - SVGComponentTransferFunctionElementImpl.cc SVGFEFuncAElementImpl.cc - SVGFEFuncBElementImpl.cc SVGFEFuncGElementImpl.cc SVGFEFuncRElementImpl.cc - SVGFECompositeElementImpl.cc SVGFEConvolveMatrixElementImpl.cc - SVGFEFloodElementImpl.cc SVGFEGaussianBlurElementImpl.cc - SVGFEDiffuseLightingElementImpl.cc SVGFEDistantLightElementImpl.cc - SVGFEPointLightElementImpl.cc SVGFESpotLightElementImpl.cc - SVGFEDisplacementMapElementImpl.cc SVGFEMergeElementImpl.cc - SVGFEMergeNodeElementImpl.cc SVGFEImageElementImpl.cc - SVGFEMorphologyElementImpl.cc SVGFEOffsetElementImpl.cc - SVGFESpecularLightingElementImpl.cc SVGFETileElementImpl.cc - SVGFETurbulenceElementImpl.cc SVGCursorElementImpl.cc - SVGAElementImpl.cc SVGViewElementImpl.cc SVGScriptElementImpl.cc - SVGEventImpl.cc SVGZoomEventImpl.cc SVGEcma.cc generateddata.cpp - SVGAnimationElementImpl.cc SVGAnimateElementImpl.cc SVGSetElementImpl.cc - SVGAnimateMotionElementImpl.cc SVGAnimateColorElementImpl.cc - SVGAnimateTransformElementImpl.cc SVGMPathElementImpl.cc SVGTimeScheduler.cc - SVGFontElementImpl.cc SVGAltGlyphElementImpl.cc SVGAltGlyphDefElementImpl.cc - SVGGlyphRefElementImpl.cc SVGGlyphElementImpl.cc SVGMissingGlyphElementImpl.cc - SVGFontFaceElementImpl.cc SVGFontFaceFormatElementImpl.cc - SVGFontFaceNameElementImpl.cc SVGFontFaceSrcElementImpl.cc - SVGFontFaceUriElementImpl.cc SVGDefinitionSrcElementImpl.cc - SVGHKernElementImpl.cc SVGVKernElementImpl.cc SVGMetadataElementImpl.cc - SVGForeignObjectElementImpl.cc svgpathparser.cc + SVGLengthImpl.cpp SVGNumberImpl.cpp SVGPointImpl.cpp SVGTransformImpl.cpp + SVGMatrixImpl.cpp SVGRectImpl.cpp SVGAngleImpl.cpp SVGAnimatedLengthImpl.cpp + SVGAnimatedNumberImpl.cpp SVGAnimatedIntegerImpl.cpp SVGAnimatedBooleanImpl.cpp + SVGAnimatedEnumerationImpl.cpp SVGAnimatedPreserveAspectRatioImpl.cpp + SVGAnimatedRectImpl.cpp SVGAnimatedAngleImpl.cpp SVGAnimatedPathDataImpl.cpp + SVGAnimatedStringImpl.cpp SVGLengthListImpl.cpp SVGNumberListImpl.cpp + SVGPointListImpl.cpp SVGTransformListImpl.cpp SVGStringListImpl.cpp + SVGPathSegListImpl.cpp SVGElementInstanceListImpl.cpp + SVGAnimatedLengthListImpl.cpp SVGAnimatedNumberListImpl.cpp + SVGAnimatedPointsImpl.cpp SVGAnimatedTransformListImpl.cpp + SVGShapeImpl.cpp SVGContainerImpl.cpp SVGBBoxTarget.cpp SVGHelperImpl.cpp + SVGStylableImpl.cpp SVGTransformableImpl.cpp SVGTestsImpl.cpp SVGLangSpaceImpl.cpp + SVGExternalResourcesRequiredImpl.cpp SVGLocatableImpl.cpp SVGFitToViewBoxImpl.cpp + SVGPreserveAspectRatioImpl.cpp SVGZoomAndPanImpl.cpp SVGViewSpecImpl.cpp + SVGElementImpl.cpp SVGElementInstanceImpl.cpp SVGDocumentImpl.cpp + SVGSVGElementImpl.cpp SVGWindowImpl.cpp SVGDefsElementImpl.cpp + SVGUseElementImpl.cpp SVGDescElementImpl.cpp SVGTitleElementImpl.cpp + SVGGElementImpl.cpp SVGSwitchElementImpl.cpp SVGSymbolElementImpl.cpp + SVGImageElementImpl.cpp SVGURIReferenceImpl.cpp SVGStyleElementImpl.cpp + SVGCSSRuleImpl.cpp SVGPathElementImpl.cpp SVGPathSegImpl.cpp + SVGPathSegClosePathImpl.cpp SVGPathSegArcImpl.cpp SVGPathSegMovetoImpl.cpp + SVGPathSegCurvetoQuadraticImpl.cpp SVGPathSegCurvetoQuadraticSmoothImpl.cpp + SVGPathSegCurvetoCubicImpl.cpp SVGPathSegCurvetoCubicSmoothImpl.cpp + SVGPathSegLinetoImpl.cpp SVGPathSegLinetoHorizontalImpl.cpp + SVGPathSegLinetoVerticalImpl.cpp SVGRectElementImpl.cpp SVGCircleElementImpl.cpp + SVGEllipseElementImpl.cpp SVGLineElementImpl.cpp SVGPolyElementImpl.cpp + SVGPolylineElementImpl.cpp SVGPolygonElementImpl.cpp SVGTextElementImpl.cpp + SVGTSpanElementImpl.cpp SVGTRefElementImpl.cpp SVGTextPositioningElementImpl.cpp + SVGTextContentElementImpl.cpp SVGTextPathElementImpl.cpp SVGPaintImpl.cpp + SVGMarkerElementImpl.cpp SVGColorImpl.cpp SVGICCColorImpl.cpp + SVGColorProfileElementImpl.cpp SVGColorProfileRuleImpl.cpp SVGPaintServerImpl.cpp + SVGGradientElementImpl.cpp SVGStopElementImpl.cpp SVGLinearGradientElementImpl.cpp + SVGRadialGradientElementImpl.cpp SVGPatternElementImpl.cpp + SVGClipPathElementImpl.cpp SVGMaskElementImpl.cpp SVGFilterElementImpl.cpp + SVGFilterPrimitiveStandardAttributesImpl.cpp SVGFEBlendElementImpl.cpp + SVGFEColorMatrixElementImpl.cpp SVGFEComponentTransferElementImpl.cpp + SVGComponentTransferFunctionElementImpl.cpp SVGFEFuncAElementImpl.cpp + SVGFEFuncBElementImpl.cpp SVGFEFuncGElementImpl.cpp SVGFEFuncRElementImpl.cpp + SVGFECompositeElementImpl.cpp SVGFEConvolveMatrixElementImpl.cpp + SVGFEFloodElementImpl.cpp SVGFEGaussianBlurElementImpl.cpp + SVGFEDiffuseLightingElementImpl.cpp SVGFEDistantLightElementImpl.cpp + SVGFEPointLightElementImpl.cpp SVGFESpotLightElementImpl.cpp + SVGFEDisplacementMapElementImpl.cpp SVGFEMergeElementImpl.cpp + SVGFEMergeNodeElementImpl.cpp SVGFEImageElementImpl.cpp + SVGFEMorphologyElementImpl.cpp SVGFEOffsetElementImpl.cpp + SVGFESpecularLightingElementImpl.cpp SVGFETileElementImpl.cpp + SVGFETurbulenceElementImpl.cpp SVGCursorElementImpl.cpp + SVGAElementImpl.cpp SVGViewElementImpl.cpp SVGScriptElementImpl.cpp + SVGEventImpl.cpp SVGZoomEventImpl.cpp SVGEcma.cpp generateddata.cpp + SVGAnimationElementImpl.cpp SVGAnimateElementImpl.cpp SVGSetElementImpl.cpp + SVGAnimateMotionElementImpl.cpp SVGAnimateColorElementImpl.cpp + SVGAnimateTransformElementImpl.cpp SVGMPathElementImpl.cpp SVGTimeScheduler.cpp + SVGFontElementImpl.cpp SVGAltGlyphElementImpl.cpp SVGAltGlyphDefElementImpl.cpp + SVGGlyphRefElementImpl.cpp SVGGlyphElementImpl.cpp SVGMissingGlyphElementImpl.cpp + SVGFontFaceElementImpl.cpp SVGFontFaceFormatElementImpl.cpp + SVGFontFaceNameElementImpl.cpp SVGFontFaceSrcElementImpl.cpp + SVGFontFaceUriElementImpl.cpp SVGDefinitionSrcElementImpl.cpp + SVGHKernElementImpl.cpp SVGVKernElementImpl.cpp SVGMetadataElementImpl.cpp + SVGForeignObjectElementImpl.cpp svgpathparser.cpp LINK kjs-shared ) diff --git a/ksvg/impl/Makefile.am b/ksvg/impl/Makefile.am index 24e40d67..8509022f 100644 --- a/ksvg/impl/Makefile.am +++ b/ksvg/impl/Makefile.am @@ -29,87 +29,87 @@ KDE_OPTIONS = nofinal KDE_CXXFLAGS = $(USE_EXCEPTIONS) libksvgdomimpl_la_SOURCES = \ -SVGLengthImpl.cc SVGNumberImpl.cc SVGPointImpl.cc SVGTransformImpl.cc \ -SVGMatrixImpl.cc SVGRectImpl.cc SVGAngleImpl.cc \ +SVGLengthImpl.cpp SVGNumberImpl.cpp SVGPointImpl.cpp SVGTransformImpl.cpp \ +SVGMatrixImpl.cpp SVGRectImpl.cpp SVGAngleImpl.cpp \ \ -SVGAnimatedLengthImpl.cc SVGAnimatedNumberImpl.cc SVGAnimatedIntegerImpl.cc \ -SVGAnimatedBooleanImpl.cc SVGAnimatedEnumerationImpl.cc SVGAnimatedPreserveAspectRatioImpl.cc \ -SVGAnimatedRectImpl.cc SVGAnimatedAngleImpl.cc SVGAnimatedPathDataImpl.cc SVGAnimatedStringImpl.cc \ +SVGAnimatedLengthImpl.cpp SVGAnimatedNumberImpl.cpp SVGAnimatedIntegerImpl.cpp \ +SVGAnimatedBooleanImpl.cpp SVGAnimatedEnumerationImpl.cpp SVGAnimatedPreserveAspectRatioImpl.cpp \ +SVGAnimatedRectImpl.cpp SVGAnimatedAngleImpl.cpp SVGAnimatedPathDataImpl.cpp SVGAnimatedStringImpl.cpp \ \ -SVGLengthListImpl.cc SVGNumberListImpl.cc SVGPointListImpl.cc SVGTransformListImpl.cc \ -SVGStringListImpl.cc SVGPathSegListImpl.cc SVGElementInstanceListImpl.cc \ +SVGLengthListImpl.cpp SVGNumberListImpl.cpp SVGPointListImpl.cpp SVGTransformListImpl.cpp \ +SVGStringListImpl.cpp SVGPathSegListImpl.cpp SVGElementInstanceListImpl.cpp \ \ -SVGAnimatedLengthListImpl.cc SVGAnimatedNumberListImpl.cc \ -SVGAnimatedPointsImpl.cc SVGAnimatedTransformListImpl.cc \ +SVGAnimatedLengthListImpl.cpp SVGAnimatedNumberListImpl.cpp \ +SVGAnimatedPointsImpl.cpp SVGAnimatedTransformListImpl.cpp \ \ -SVGShapeImpl.cc SVGContainerImpl.cc SVGBBoxTarget.cc SVGHelperImpl.cc \ -SVGStylableImpl.cc SVGTransformableImpl.cc SVGTestsImpl.cc SVGLangSpaceImpl.cc \ -SVGExternalResourcesRequiredImpl.cc SVGLocatableImpl.cc SVGFitToViewBoxImpl.cc \ -SVGPreserveAspectRatioImpl.cc SVGZoomAndPanImpl.cc SVGViewSpecImpl.cc \ +SVGShapeImpl.cpp SVGContainerImpl.cpp SVGBBoxTarget.cpp SVGHelperImpl.cpp \ +SVGStylableImpl.cpp SVGTransformableImpl.cpp SVGTestsImpl.cpp SVGLangSpaceImpl.cpp \ +SVGExternalResourcesRequiredImpl.cpp SVGLocatableImpl.cpp SVGFitToViewBoxImpl.cpp \ +SVGPreserveAspectRatioImpl.cpp SVGZoomAndPanImpl.cpp SVGViewSpecImpl.cpp \ \ -SVGElementImpl.cc SVGElementInstanceImpl.cc \ -SVGDocumentImpl.cc SVGSVGElementImpl.cc SVGWindowImpl.cc \ -SVGDefsElementImpl.cc SVGUseElementImpl.cc \ -SVGDescElementImpl.cc SVGTitleElementImpl.cc \ -SVGGElementImpl.cc SVGSwitchElementImpl.cc \ -SVGSymbolElementImpl.cc SVGImageElementImpl.cc \ -SVGURIReferenceImpl.cc \ +SVGElementImpl.cpp SVGElementInstanceImpl.cpp \ +SVGDocumentImpl.cpp SVGSVGElementImpl.cpp SVGWindowImpl.cpp \ +SVGDefsElementImpl.cpp SVGUseElementImpl.cpp \ +SVGDescElementImpl.cpp SVGTitleElementImpl.cpp \ +SVGGElementImpl.cpp SVGSwitchElementImpl.cpp \ +SVGSymbolElementImpl.cpp SVGImageElementImpl.cpp \ +SVGURIReferenceImpl.cpp \ \ -SVGStyleElementImpl.cc SVGCSSRuleImpl.cc \ +SVGStyleElementImpl.cpp SVGCSSRuleImpl.cpp \ \ -SVGPathElementImpl.cc SVGPathSegImpl.cc SVGPathSegClosePathImpl.cc SVGPathSegArcImpl.cc \ -SVGPathSegMovetoImpl.cc SVGPathSegCurvetoQuadraticImpl.cc SVGPathSegCurvetoQuadraticSmoothImpl.cc \ -SVGPathSegCurvetoCubicImpl.cc SVGPathSegCurvetoCubicSmoothImpl.cc SVGPathSegLinetoImpl.cc \ -SVGPathSegLinetoHorizontalImpl.cc SVGPathSegLinetoVerticalImpl.cc \ +SVGPathElementImpl.cpp SVGPathSegImpl.cpp SVGPathSegClosePathImpl.cpp SVGPathSegArcImpl.cpp \ +SVGPathSegMovetoImpl.cpp SVGPathSegCurvetoQuadraticImpl.cpp SVGPathSegCurvetoQuadraticSmoothImpl.cpp \ +SVGPathSegCurvetoCubicImpl.cpp SVGPathSegCurvetoCubicSmoothImpl.cpp SVGPathSegLinetoImpl.cpp \ +SVGPathSegLinetoHorizontalImpl.cpp SVGPathSegLinetoVerticalImpl.cpp \ \ -SVGRectElementImpl.cc SVGCircleElementImpl.cc SVGEllipseElementImpl.cc SVGLineElementImpl.cc \ -SVGPolyElementImpl.cc SVGPolylineElementImpl.cc SVGPolygonElementImpl.cc \ +SVGRectElementImpl.cpp SVGCircleElementImpl.cpp SVGEllipseElementImpl.cpp SVGLineElementImpl.cpp \ +SVGPolyElementImpl.cpp SVGPolylineElementImpl.cpp SVGPolygonElementImpl.cpp \ \ -SVGTextElementImpl.cc SVGTSpanElementImpl.cc SVGTRefElementImpl.cc \ -SVGTextPositioningElementImpl.cc SVGTextContentElementImpl.cc SVGTextPathElementImpl.cc \ +SVGTextElementImpl.cpp SVGTSpanElementImpl.cpp SVGTRefElementImpl.cpp \ +SVGTextPositioningElementImpl.cpp SVGTextContentElementImpl.cpp SVGTextPathElementImpl.cpp \ \ -SVGPaintImpl.cc SVGMarkerElementImpl.cc \ +SVGPaintImpl.cpp SVGMarkerElementImpl.cpp \ \ -SVGColorImpl.cc SVGICCColorImpl.cc SVGColorProfileElementImpl.cc SVGColorProfileRuleImpl.cc \ +SVGColorImpl.cpp SVGICCColorImpl.cpp SVGColorProfileElementImpl.cpp SVGColorProfileRuleImpl.cpp \ \ -SVGPaintServerImpl.cc SVGGradientElementImpl.cc SVGStopElementImpl.cc \ -SVGLinearGradientElementImpl.cc SVGRadialGradientElementImpl.cc SVGPatternElementImpl.cc \ +SVGPaintServerImpl.cpp SVGGradientElementImpl.cpp SVGStopElementImpl.cpp \ +SVGLinearGradientElementImpl.cpp SVGRadialGradientElementImpl.cpp SVGPatternElementImpl.cpp \ \ -SVGClipPathElementImpl.cc SVGMaskElementImpl.cc \ +SVGClipPathElementImpl.cpp SVGMaskElementImpl.cpp \ \ -SVGFilterElementImpl.cc SVGFilterPrimitiveStandardAttributesImpl.cc \ -SVGFEBlendElementImpl.cc SVGFEColorMatrixElementImpl.cc \ -SVGFEComponentTransferElementImpl.cc SVGComponentTransferFunctionElementImpl.cc \ -SVGFEFuncAElementImpl.cc SVGFEFuncBElementImpl.cc SVGFEFuncGElementImpl.cc \ -SVGFEFuncRElementImpl.cc SVGFECompositeElementImpl.cc SVGFEConvolveMatrixElementImpl.cc \ -SVGFEFloodElementImpl.cc SVGFEGaussianBlurElementImpl.cc SVGFEDiffuseLightingElementImpl.cc \ -SVGFEDistantLightElementImpl.cc SVGFEPointLightElementImpl.cc SVGFESpotLightElementImpl.cc \ -SVGFEDisplacementMapElementImpl.cc SVGFEMergeElementImpl.cc SVGFEMergeNodeElementImpl.cc \ -SVGFEImageElementImpl.cc SVGFEMorphologyElementImpl.cc SVGFEOffsetElementImpl.cc \ -SVGFESpecularLightingElementImpl.cc SVGFETileElementImpl.cc SVGFETurbulenceElementImpl.cc \ +SVGFilterElementImpl.cpp SVGFilterPrimitiveStandardAttributesImpl.cpp \ +SVGFEBlendElementImpl.cpp SVGFEColorMatrixElementImpl.cpp \ +SVGFEComponentTransferElementImpl.cpp SVGComponentTransferFunctionElementImpl.cpp \ +SVGFEFuncAElementImpl.cpp SVGFEFuncBElementImpl.cpp SVGFEFuncGElementImpl.cpp \ +SVGFEFuncRElementImpl.cpp SVGFECompositeElementImpl.cpp SVGFEConvolveMatrixElementImpl.cpp \ +SVGFEFloodElementImpl.cpp SVGFEGaussianBlurElementImpl.cpp SVGFEDiffuseLightingElementImpl.cpp \ +SVGFEDistantLightElementImpl.cpp SVGFEPointLightElementImpl.cpp SVGFESpotLightElementImpl.cpp \ +SVGFEDisplacementMapElementImpl.cpp SVGFEMergeElementImpl.cpp SVGFEMergeNodeElementImpl.cpp \ +SVGFEImageElementImpl.cpp SVGFEMorphologyElementImpl.cpp SVGFEOffsetElementImpl.cpp \ +SVGFESpecularLightingElementImpl.cpp SVGFETileElementImpl.cpp SVGFETurbulenceElementImpl.cpp \ \ -SVGCursorElementImpl.cc \ +SVGCursorElementImpl.cpp \ \ -SVGAElementImpl.cc SVGViewElementImpl.cc \ +SVGAElementImpl.cpp SVGViewElementImpl.cpp \ \ -SVGScriptElementImpl.cc SVGEventImpl.cc SVGZoomEventImpl.cc \ -SVGEcma.cc generateddata.cpp \ +SVGScriptElementImpl.cpp SVGEventImpl.cpp SVGZoomEventImpl.cpp \ +SVGEcma.cpp generateddata.cpp \ \ -SVGAnimationElementImpl.cc SVGAnimateElementImpl.cc SVGSetElementImpl.cc \ -SVGAnimateMotionElementImpl.cc SVGAnimateColorElementImpl.cc \ -SVGAnimateTransformElementImpl.cc SVGMPathElementImpl.cc SVGTimeScheduler.cc \ +SVGAnimationElementImpl.cpp SVGAnimateElementImpl.cpp SVGSetElementImpl.cpp \ +SVGAnimateMotionElementImpl.cpp SVGAnimateColorElementImpl.cpp \ +SVGAnimateTransformElementImpl.cpp SVGMPathElementImpl.cpp SVGTimeScheduler.cpp \ \ -SVGFontElementImpl.cc SVGAltGlyphElementImpl.cc SVGAltGlyphDefElementImpl.cc \ -SVGGlyphRefElementImpl.cc SVGGlyphElementImpl.cc SVGMissingGlyphElementImpl.cc \ -SVGFontFaceElementImpl.cc SVGFontFaceFormatElementImpl.cc SVGFontFaceNameElementImpl.cc \ -SVGFontFaceSrcElementImpl.cc SVGFontFaceUriElementImpl.cc SVGDefinitionSrcElementImpl.cc \ -SVGHKernElementImpl.cc SVGVKernElementImpl.cc \ +SVGFontElementImpl.cpp SVGAltGlyphElementImpl.cpp SVGAltGlyphDefElementImpl.cpp \ +SVGGlyphRefElementImpl.cpp SVGGlyphElementImpl.cpp SVGMissingGlyphElementImpl.cpp \ +SVGFontFaceElementImpl.cpp SVGFontFaceFormatElementImpl.cpp SVGFontFaceNameElementImpl.cpp \ +SVGFontFaceSrcElementImpl.cpp SVGFontFaceUriElementImpl.cpp SVGDefinitionSrcElementImpl.cpp \ +SVGHKernElementImpl.cpp SVGVKernElementImpl.cpp \ \ -SVGMetadataElementImpl.cc \ +SVGMetadataElementImpl.cpp \ \ -SVGForeignObjectElementImpl.cc \ +SVGForeignObjectElementImpl.cpp \ \ -svgpathparser.cc +svgpathparser.cpp libksvgdomimpl_la_METASOURCES = AUTO diff --git a/ksvg/impl/SVGAElementImpl.cc b/ksvg/impl/SVGAElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGAElementImpl.cc rename to ksvg/impl/SVGAElementImpl.cpp diff --git a/ksvg/impl/SVGAltGlyphDefElementImpl.cc b/ksvg/impl/SVGAltGlyphDefElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGAltGlyphDefElementImpl.cc rename to ksvg/impl/SVGAltGlyphDefElementImpl.cpp diff --git a/ksvg/impl/SVGAltGlyphElementImpl.cc b/ksvg/impl/SVGAltGlyphElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGAltGlyphElementImpl.cc rename to ksvg/impl/SVGAltGlyphElementImpl.cpp diff --git a/ksvg/impl/SVGAngleImpl.cc b/ksvg/impl/SVGAngleImpl.cpp similarity index 100% rename from ksvg/impl/SVGAngleImpl.cc rename to ksvg/impl/SVGAngleImpl.cpp diff --git a/ksvg/impl/SVGAnimateColorElementImpl.cc b/ksvg/impl/SVGAnimateColorElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGAnimateColorElementImpl.cc rename to ksvg/impl/SVGAnimateColorElementImpl.cpp diff --git a/ksvg/impl/SVGAnimateElementImpl.cc b/ksvg/impl/SVGAnimateElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGAnimateElementImpl.cc rename to ksvg/impl/SVGAnimateElementImpl.cpp diff --git a/ksvg/impl/SVGAnimateMotionElementImpl.cc b/ksvg/impl/SVGAnimateMotionElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGAnimateMotionElementImpl.cc rename to ksvg/impl/SVGAnimateMotionElementImpl.cpp diff --git a/ksvg/impl/SVGAnimateTransformElementImpl.cc b/ksvg/impl/SVGAnimateTransformElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGAnimateTransformElementImpl.cc rename to ksvg/impl/SVGAnimateTransformElementImpl.cpp diff --git a/ksvg/impl/SVGAnimatedAngleImpl.cc b/ksvg/impl/SVGAnimatedAngleImpl.cpp similarity index 100% rename from ksvg/impl/SVGAnimatedAngleImpl.cc rename to ksvg/impl/SVGAnimatedAngleImpl.cpp diff --git a/ksvg/impl/SVGAnimatedBooleanImpl.cc b/ksvg/impl/SVGAnimatedBooleanImpl.cpp similarity index 100% rename from ksvg/impl/SVGAnimatedBooleanImpl.cc rename to ksvg/impl/SVGAnimatedBooleanImpl.cpp diff --git a/ksvg/impl/SVGAnimatedEnumerationImpl.cc b/ksvg/impl/SVGAnimatedEnumerationImpl.cpp similarity index 100% rename from ksvg/impl/SVGAnimatedEnumerationImpl.cc rename to ksvg/impl/SVGAnimatedEnumerationImpl.cpp diff --git a/ksvg/impl/SVGAnimatedIntegerImpl.cc b/ksvg/impl/SVGAnimatedIntegerImpl.cpp similarity index 100% rename from ksvg/impl/SVGAnimatedIntegerImpl.cc rename to ksvg/impl/SVGAnimatedIntegerImpl.cpp diff --git a/ksvg/impl/SVGAnimatedLengthImpl.cc b/ksvg/impl/SVGAnimatedLengthImpl.cpp similarity index 100% rename from ksvg/impl/SVGAnimatedLengthImpl.cc rename to ksvg/impl/SVGAnimatedLengthImpl.cpp diff --git a/ksvg/impl/SVGAnimatedLengthListImpl.cc b/ksvg/impl/SVGAnimatedLengthListImpl.cpp similarity index 100% rename from ksvg/impl/SVGAnimatedLengthListImpl.cc rename to ksvg/impl/SVGAnimatedLengthListImpl.cpp diff --git a/ksvg/impl/SVGAnimatedNumberImpl.cc b/ksvg/impl/SVGAnimatedNumberImpl.cpp similarity index 100% rename from ksvg/impl/SVGAnimatedNumberImpl.cc rename to ksvg/impl/SVGAnimatedNumberImpl.cpp diff --git a/ksvg/impl/SVGAnimatedNumberListImpl.cc b/ksvg/impl/SVGAnimatedNumberListImpl.cpp similarity index 100% rename from ksvg/impl/SVGAnimatedNumberListImpl.cc rename to ksvg/impl/SVGAnimatedNumberListImpl.cpp diff --git a/ksvg/impl/SVGAnimatedPathDataImpl.cc b/ksvg/impl/SVGAnimatedPathDataImpl.cpp similarity index 100% rename from ksvg/impl/SVGAnimatedPathDataImpl.cc rename to ksvg/impl/SVGAnimatedPathDataImpl.cpp diff --git a/ksvg/impl/SVGAnimatedPointsImpl.cc b/ksvg/impl/SVGAnimatedPointsImpl.cpp similarity index 100% rename from ksvg/impl/SVGAnimatedPointsImpl.cc rename to ksvg/impl/SVGAnimatedPointsImpl.cpp diff --git a/ksvg/impl/SVGAnimatedPreserveAspectRatioImpl.cc b/ksvg/impl/SVGAnimatedPreserveAspectRatioImpl.cpp similarity index 100% rename from ksvg/impl/SVGAnimatedPreserveAspectRatioImpl.cc rename to ksvg/impl/SVGAnimatedPreserveAspectRatioImpl.cpp diff --git a/ksvg/impl/SVGAnimatedRectImpl.cc b/ksvg/impl/SVGAnimatedRectImpl.cpp similarity index 100% rename from ksvg/impl/SVGAnimatedRectImpl.cc rename to ksvg/impl/SVGAnimatedRectImpl.cpp diff --git a/ksvg/impl/SVGAnimatedStringImpl.cc b/ksvg/impl/SVGAnimatedStringImpl.cpp similarity index 100% rename from ksvg/impl/SVGAnimatedStringImpl.cc rename to ksvg/impl/SVGAnimatedStringImpl.cpp diff --git a/ksvg/impl/SVGAnimatedTransformListImpl.cc b/ksvg/impl/SVGAnimatedTransformListImpl.cpp similarity index 100% rename from ksvg/impl/SVGAnimatedTransformListImpl.cc rename to ksvg/impl/SVGAnimatedTransformListImpl.cpp diff --git a/ksvg/impl/SVGAnimationElementImpl.cc b/ksvg/impl/SVGAnimationElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGAnimationElementImpl.cc rename to ksvg/impl/SVGAnimationElementImpl.cpp diff --git a/ksvg/impl/SVGBBoxTarget.cc b/ksvg/impl/SVGBBoxTarget.cpp similarity index 100% rename from ksvg/impl/SVGBBoxTarget.cc rename to ksvg/impl/SVGBBoxTarget.cpp diff --git a/ksvg/impl/SVGCSSRuleImpl.cc b/ksvg/impl/SVGCSSRuleImpl.cpp similarity index 100% rename from ksvg/impl/SVGCSSRuleImpl.cc rename to ksvg/impl/SVGCSSRuleImpl.cpp diff --git a/ksvg/impl/SVGCircleElementImpl.cc b/ksvg/impl/SVGCircleElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGCircleElementImpl.cc rename to ksvg/impl/SVGCircleElementImpl.cpp diff --git a/ksvg/impl/SVGClipPathElementImpl.cc b/ksvg/impl/SVGClipPathElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGClipPathElementImpl.cc rename to ksvg/impl/SVGClipPathElementImpl.cpp diff --git a/ksvg/impl/SVGColorImpl.cc b/ksvg/impl/SVGColorImpl.cpp similarity index 100% rename from ksvg/impl/SVGColorImpl.cc rename to ksvg/impl/SVGColorImpl.cpp diff --git a/ksvg/impl/SVGColorProfileElementImpl.cc b/ksvg/impl/SVGColorProfileElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGColorProfileElementImpl.cc rename to ksvg/impl/SVGColorProfileElementImpl.cpp diff --git a/ksvg/impl/SVGColorProfileRuleImpl.cc b/ksvg/impl/SVGColorProfileRuleImpl.cpp similarity index 100% rename from ksvg/impl/SVGColorProfileRuleImpl.cc rename to ksvg/impl/SVGColorProfileRuleImpl.cpp diff --git a/ksvg/impl/SVGComponentTransferFunctionElementImpl.cc b/ksvg/impl/SVGComponentTransferFunctionElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGComponentTransferFunctionElementImpl.cc rename to ksvg/impl/SVGComponentTransferFunctionElementImpl.cpp diff --git a/ksvg/impl/SVGContainerImpl.cc b/ksvg/impl/SVGContainerImpl.cpp similarity index 100% rename from ksvg/impl/SVGContainerImpl.cc rename to ksvg/impl/SVGContainerImpl.cpp diff --git a/ksvg/impl/SVGCursorElementImpl.cc b/ksvg/impl/SVGCursorElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGCursorElementImpl.cc rename to ksvg/impl/SVGCursorElementImpl.cpp diff --git a/ksvg/impl/SVGDefinitionSrcElementImpl.cc b/ksvg/impl/SVGDefinitionSrcElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGDefinitionSrcElementImpl.cc rename to ksvg/impl/SVGDefinitionSrcElementImpl.cpp diff --git a/ksvg/impl/SVGDefsElementImpl.cc b/ksvg/impl/SVGDefsElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGDefsElementImpl.cc rename to ksvg/impl/SVGDefsElementImpl.cpp diff --git a/ksvg/impl/SVGDescElementImpl.cc b/ksvg/impl/SVGDescElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGDescElementImpl.cc rename to ksvg/impl/SVGDescElementImpl.cpp diff --git a/ksvg/impl/SVGDocumentImpl.cc b/ksvg/impl/SVGDocumentImpl.cpp similarity index 100% rename from ksvg/impl/SVGDocumentImpl.cc rename to ksvg/impl/SVGDocumentImpl.cpp diff --git a/ksvg/impl/SVGEcma.cc b/ksvg/impl/SVGEcma.cpp similarity index 100% rename from ksvg/impl/SVGEcma.cc rename to ksvg/impl/SVGEcma.cpp diff --git a/ksvg/impl/SVGElementImpl.cc b/ksvg/impl/SVGElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGElementImpl.cc rename to ksvg/impl/SVGElementImpl.cpp diff --git a/ksvg/impl/SVGElementInstanceImpl.cc b/ksvg/impl/SVGElementInstanceImpl.cpp similarity index 100% rename from ksvg/impl/SVGElementInstanceImpl.cc rename to ksvg/impl/SVGElementInstanceImpl.cpp diff --git a/ksvg/impl/SVGElementInstanceListImpl.cc b/ksvg/impl/SVGElementInstanceListImpl.cpp similarity index 100% rename from ksvg/impl/SVGElementInstanceListImpl.cc rename to ksvg/impl/SVGElementInstanceListImpl.cpp diff --git a/ksvg/impl/SVGEllipseElementImpl.cc b/ksvg/impl/SVGEllipseElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGEllipseElementImpl.cc rename to ksvg/impl/SVGEllipseElementImpl.cpp diff --git a/ksvg/impl/SVGEventImpl.cc b/ksvg/impl/SVGEventImpl.cpp similarity index 100% rename from ksvg/impl/SVGEventImpl.cc rename to ksvg/impl/SVGEventImpl.cpp diff --git a/ksvg/impl/SVGExternalResourcesRequiredImpl.cc b/ksvg/impl/SVGExternalResourcesRequiredImpl.cpp similarity index 100% rename from ksvg/impl/SVGExternalResourcesRequiredImpl.cc rename to ksvg/impl/SVGExternalResourcesRequiredImpl.cpp diff --git a/ksvg/impl/SVGFEBlendElementImpl.cc b/ksvg/impl/SVGFEBlendElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGFEBlendElementImpl.cc rename to ksvg/impl/SVGFEBlendElementImpl.cpp diff --git a/ksvg/impl/SVGFEColorMatrixElementImpl.cc b/ksvg/impl/SVGFEColorMatrixElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGFEColorMatrixElementImpl.cc rename to ksvg/impl/SVGFEColorMatrixElementImpl.cpp diff --git a/ksvg/impl/SVGFEComponentTransferElementImpl.cc b/ksvg/impl/SVGFEComponentTransferElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGFEComponentTransferElementImpl.cc rename to ksvg/impl/SVGFEComponentTransferElementImpl.cpp diff --git a/ksvg/impl/SVGFECompositeElementImpl.cc b/ksvg/impl/SVGFECompositeElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGFECompositeElementImpl.cc rename to ksvg/impl/SVGFECompositeElementImpl.cpp diff --git a/ksvg/impl/SVGFEConvolveMatrixElementImpl.cc b/ksvg/impl/SVGFEConvolveMatrixElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGFEConvolveMatrixElementImpl.cc rename to ksvg/impl/SVGFEConvolveMatrixElementImpl.cpp diff --git a/ksvg/impl/SVGFEDiffuseLightingElementImpl.cc b/ksvg/impl/SVGFEDiffuseLightingElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGFEDiffuseLightingElementImpl.cc rename to ksvg/impl/SVGFEDiffuseLightingElementImpl.cpp diff --git a/ksvg/impl/SVGFEDisplacementMapElementImpl.cc b/ksvg/impl/SVGFEDisplacementMapElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGFEDisplacementMapElementImpl.cc rename to ksvg/impl/SVGFEDisplacementMapElementImpl.cpp diff --git a/ksvg/impl/SVGFEDistantLightElementImpl.cc b/ksvg/impl/SVGFEDistantLightElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGFEDistantLightElementImpl.cc rename to ksvg/impl/SVGFEDistantLightElementImpl.cpp diff --git a/ksvg/impl/SVGFEFloodElementImpl.cc b/ksvg/impl/SVGFEFloodElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGFEFloodElementImpl.cc rename to ksvg/impl/SVGFEFloodElementImpl.cpp diff --git a/ksvg/impl/SVGFEFuncAElementImpl.cc b/ksvg/impl/SVGFEFuncAElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGFEFuncAElementImpl.cc rename to ksvg/impl/SVGFEFuncAElementImpl.cpp diff --git a/ksvg/impl/SVGFEFuncBElementImpl.cc b/ksvg/impl/SVGFEFuncBElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGFEFuncBElementImpl.cc rename to ksvg/impl/SVGFEFuncBElementImpl.cpp diff --git a/ksvg/impl/SVGFEFuncGElementImpl.cc b/ksvg/impl/SVGFEFuncGElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGFEFuncGElementImpl.cc rename to ksvg/impl/SVGFEFuncGElementImpl.cpp diff --git a/ksvg/impl/SVGFEFuncRElementImpl.cc b/ksvg/impl/SVGFEFuncRElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGFEFuncRElementImpl.cc rename to ksvg/impl/SVGFEFuncRElementImpl.cpp diff --git a/ksvg/impl/SVGFEGaussianBlurElementImpl.cc b/ksvg/impl/SVGFEGaussianBlurElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGFEGaussianBlurElementImpl.cc rename to ksvg/impl/SVGFEGaussianBlurElementImpl.cpp diff --git a/ksvg/impl/SVGFEImageElementImpl.cc b/ksvg/impl/SVGFEImageElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGFEImageElementImpl.cc rename to ksvg/impl/SVGFEImageElementImpl.cpp diff --git a/ksvg/impl/SVGFEMergeElementImpl.cc b/ksvg/impl/SVGFEMergeElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGFEMergeElementImpl.cc rename to ksvg/impl/SVGFEMergeElementImpl.cpp diff --git a/ksvg/impl/SVGFEMergeNodeElementImpl.cc b/ksvg/impl/SVGFEMergeNodeElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGFEMergeNodeElementImpl.cc rename to ksvg/impl/SVGFEMergeNodeElementImpl.cpp diff --git a/ksvg/impl/SVGFEMorphologyElementImpl.cc b/ksvg/impl/SVGFEMorphologyElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGFEMorphologyElementImpl.cc rename to ksvg/impl/SVGFEMorphologyElementImpl.cpp diff --git a/ksvg/impl/SVGFEOffsetElementImpl.cc b/ksvg/impl/SVGFEOffsetElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGFEOffsetElementImpl.cc rename to ksvg/impl/SVGFEOffsetElementImpl.cpp diff --git a/ksvg/impl/SVGFEPointLightElementImpl.cc b/ksvg/impl/SVGFEPointLightElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGFEPointLightElementImpl.cc rename to ksvg/impl/SVGFEPointLightElementImpl.cpp diff --git a/ksvg/impl/SVGFESpecularLightingElementImpl.cc b/ksvg/impl/SVGFESpecularLightingElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGFESpecularLightingElementImpl.cc rename to ksvg/impl/SVGFESpecularLightingElementImpl.cpp diff --git a/ksvg/impl/SVGFESpotLightElementImpl.cc b/ksvg/impl/SVGFESpotLightElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGFESpotLightElementImpl.cc rename to ksvg/impl/SVGFESpotLightElementImpl.cpp diff --git a/ksvg/impl/SVGFETileElementImpl.cc b/ksvg/impl/SVGFETileElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGFETileElementImpl.cc rename to ksvg/impl/SVGFETileElementImpl.cpp diff --git a/ksvg/impl/SVGFETurbulenceElementImpl.cc b/ksvg/impl/SVGFETurbulenceElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGFETurbulenceElementImpl.cc rename to ksvg/impl/SVGFETurbulenceElementImpl.cpp diff --git a/ksvg/impl/SVGFilterElementImpl.cc b/ksvg/impl/SVGFilterElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGFilterElementImpl.cc rename to ksvg/impl/SVGFilterElementImpl.cpp diff --git a/ksvg/impl/SVGFilterPrimitiveStandardAttributesImpl.cc b/ksvg/impl/SVGFilterPrimitiveStandardAttributesImpl.cpp similarity index 100% rename from ksvg/impl/SVGFilterPrimitiveStandardAttributesImpl.cc rename to ksvg/impl/SVGFilterPrimitiveStandardAttributesImpl.cpp diff --git a/ksvg/impl/SVGFitToViewBoxImpl.cc b/ksvg/impl/SVGFitToViewBoxImpl.cpp similarity index 100% rename from ksvg/impl/SVGFitToViewBoxImpl.cc rename to ksvg/impl/SVGFitToViewBoxImpl.cpp diff --git a/ksvg/impl/SVGFontElementImpl.cc b/ksvg/impl/SVGFontElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGFontElementImpl.cc rename to ksvg/impl/SVGFontElementImpl.cpp diff --git a/ksvg/impl/SVGFontFaceElementImpl.cc b/ksvg/impl/SVGFontFaceElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGFontFaceElementImpl.cc rename to ksvg/impl/SVGFontFaceElementImpl.cpp diff --git a/ksvg/impl/SVGFontFaceFormatElementImpl.cc b/ksvg/impl/SVGFontFaceFormatElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGFontFaceFormatElementImpl.cc rename to ksvg/impl/SVGFontFaceFormatElementImpl.cpp diff --git a/ksvg/impl/SVGFontFaceNameElementImpl.cc b/ksvg/impl/SVGFontFaceNameElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGFontFaceNameElementImpl.cc rename to ksvg/impl/SVGFontFaceNameElementImpl.cpp diff --git a/ksvg/impl/SVGFontFaceSrcElementImpl.cc b/ksvg/impl/SVGFontFaceSrcElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGFontFaceSrcElementImpl.cc rename to ksvg/impl/SVGFontFaceSrcElementImpl.cpp diff --git a/ksvg/impl/SVGFontFaceUriElementImpl.cc b/ksvg/impl/SVGFontFaceUriElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGFontFaceUriElementImpl.cc rename to ksvg/impl/SVGFontFaceUriElementImpl.cpp diff --git a/ksvg/impl/SVGForeignObjectElementImpl.cc b/ksvg/impl/SVGForeignObjectElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGForeignObjectElementImpl.cc rename to ksvg/impl/SVGForeignObjectElementImpl.cpp diff --git a/ksvg/impl/SVGGElementImpl.cc b/ksvg/impl/SVGGElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGGElementImpl.cc rename to ksvg/impl/SVGGElementImpl.cpp diff --git a/ksvg/impl/SVGGlyphElementImpl.cc b/ksvg/impl/SVGGlyphElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGGlyphElementImpl.cc rename to ksvg/impl/SVGGlyphElementImpl.cpp diff --git a/ksvg/impl/SVGGlyphRefElementImpl.cc b/ksvg/impl/SVGGlyphRefElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGGlyphRefElementImpl.cc rename to ksvg/impl/SVGGlyphRefElementImpl.cpp diff --git a/ksvg/impl/SVGGradientElementImpl.cc b/ksvg/impl/SVGGradientElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGGradientElementImpl.cc rename to ksvg/impl/SVGGradientElementImpl.cpp diff --git a/ksvg/impl/SVGHKernElementImpl.cc b/ksvg/impl/SVGHKernElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGHKernElementImpl.cc rename to ksvg/impl/SVGHKernElementImpl.cpp diff --git a/ksvg/impl/SVGHelperImpl.cc b/ksvg/impl/SVGHelperImpl.cpp similarity index 100% rename from ksvg/impl/SVGHelperImpl.cc rename to ksvg/impl/SVGHelperImpl.cpp diff --git a/ksvg/impl/SVGICCColorImpl.cc b/ksvg/impl/SVGICCColorImpl.cpp similarity index 100% rename from ksvg/impl/SVGICCColorImpl.cc rename to ksvg/impl/SVGICCColorImpl.cpp diff --git a/ksvg/impl/SVGImageElementImpl.cc b/ksvg/impl/SVGImageElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGImageElementImpl.cc rename to ksvg/impl/SVGImageElementImpl.cpp diff --git a/ksvg/impl/SVGLangSpaceImpl.cc b/ksvg/impl/SVGLangSpaceImpl.cpp similarity index 100% rename from ksvg/impl/SVGLangSpaceImpl.cc rename to ksvg/impl/SVGLangSpaceImpl.cpp diff --git a/ksvg/impl/SVGLengthImpl.cc b/ksvg/impl/SVGLengthImpl.cpp similarity index 100% rename from ksvg/impl/SVGLengthImpl.cc rename to ksvg/impl/SVGLengthImpl.cpp diff --git a/ksvg/impl/SVGLengthListImpl.cc b/ksvg/impl/SVGLengthListImpl.cpp similarity index 100% rename from ksvg/impl/SVGLengthListImpl.cc rename to ksvg/impl/SVGLengthListImpl.cpp diff --git a/ksvg/impl/SVGLineElementImpl.cc b/ksvg/impl/SVGLineElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGLineElementImpl.cc rename to ksvg/impl/SVGLineElementImpl.cpp diff --git a/ksvg/impl/SVGLinearGradientElementImpl.cc b/ksvg/impl/SVGLinearGradientElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGLinearGradientElementImpl.cc rename to ksvg/impl/SVGLinearGradientElementImpl.cpp diff --git a/ksvg/impl/SVGLocatableImpl.cc b/ksvg/impl/SVGLocatableImpl.cpp similarity index 100% rename from ksvg/impl/SVGLocatableImpl.cc rename to ksvg/impl/SVGLocatableImpl.cpp diff --git a/ksvg/impl/SVGMPathElementImpl.cc b/ksvg/impl/SVGMPathElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGMPathElementImpl.cc rename to ksvg/impl/SVGMPathElementImpl.cpp diff --git a/ksvg/impl/SVGMarkerElementImpl.cc b/ksvg/impl/SVGMarkerElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGMarkerElementImpl.cc rename to ksvg/impl/SVGMarkerElementImpl.cpp diff --git a/ksvg/impl/SVGMaskElementImpl.cc b/ksvg/impl/SVGMaskElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGMaskElementImpl.cc rename to ksvg/impl/SVGMaskElementImpl.cpp diff --git a/ksvg/impl/SVGMatrixImpl.cc b/ksvg/impl/SVGMatrixImpl.cpp similarity index 100% rename from ksvg/impl/SVGMatrixImpl.cc rename to ksvg/impl/SVGMatrixImpl.cpp diff --git a/ksvg/impl/SVGMetadataElementImpl.cc b/ksvg/impl/SVGMetadataElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGMetadataElementImpl.cc rename to ksvg/impl/SVGMetadataElementImpl.cpp diff --git a/ksvg/impl/SVGMissingGlyphElementImpl.cc b/ksvg/impl/SVGMissingGlyphElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGMissingGlyphElementImpl.cc rename to ksvg/impl/SVGMissingGlyphElementImpl.cpp diff --git a/ksvg/impl/SVGNumberImpl.cc b/ksvg/impl/SVGNumberImpl.cpp similarity index 100% rename from ksvg/impl/SVGNumberImpl.cc rename to ksvg/impl/SVGNumberImpl.cpp diff --git a/ksvg/impl/SVGNumberListImpl.cc b/ksvg/impl/SVGNumberListImpl.cpp similarity index 100% rename from ksvg/impl/SVGNumberListImpl.cc rename to ksvg/impl/SVGNumberListImpl.cpp diff --git a/ksvg/impl/SVGPaintImpl.cc b/ksvg/impl/SVGPaintImpl.cpp similarity index 100% rename from ksvg/impl/SVGPaintImpl.cc rename to ksvg/impl/SVGPaintImpl.cpp diff --git a/ksvg/impl/SVGPaintServerImpl.cc b/ksvg/impl/SVGPaintServerImpl.cpp similarity index 100% rename from ksvg/impl/SVGPaintServerImpl.cc rename to ksvg/impl/SVGPaintServerImpl.cpp diff --git a/ksvg/impl/SVGPathElementImpl.cc b/ksvg/impl/SVGPathElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGPathElementImpl.cc rename to ksvg/impl/SVGPathElementImpl.cpp diff --git a/ksvg/impl/SVGPathSegArcImpl.cc b/ksvg/impl/SVGPathSegArcImpl.cpp similarity index 100% rename from ksvg/impl/SVGPathSegArcImpl.cc rename to ksvg/impl/SVGPathSegArcImpl.cpp diff --git a/ksvg/impl/SVGPathSegClosePathImpl.cc b/ksvg/impl/SVGPathSegClosePathImpl.cpp similarity index 100% rename from ksvg/impl/SVGPathSegClosePathImpl.cc rename to ksvg/impl/SVGPathSegClosePathImpl.cpp diff --git a/ksvg/impl/SVGPathSegCurvetoCubicImpl.cc b/ksvg/impl/SVGPathSegCurvetoCubicImpl.cpp similarity index 100% rename from ksvg/impl/SVGPathSegCurvetoCubicImpl.cc rename to ksvg/impl/SVGPathSegCurvetoCubicImpl.cpp diff --git a/ksvg/impl/SVGPathSegCurvetoCubicSmoothImpl.cc b/ksvg/impl/SVGPathSegCurvetoCubicSmoothImpl.cpp similarity index 100% rename from ksvg/impl/SVGPathSegCurvetoCubicSmoothImpl.cc rename to ksvg/impl/SVGPathSegCurvetoCubicSmoothImpl.cpp diff --git a/ksvg/impl/SVGPathSegCurvetoQuadraticImpl.cc b/ksvg/impl/SVGPathSegCurvetoQuadraticImpl.cpp similarity index 100% rename from ksvg/impl/SVGPathSegCurvetoQuadraticImpl.cc rename to ksvg/impl/SVGPathSegCurvetoQuadraticImpl.cpp diff --git a/ksvg/impl/SVGPathSegCurvetoQuadraticSmoothImpl.cc b/ksvg/impl/SVGPathSegCurvetoQuadraticSmoothImpl.cpp similarity index 100% rename from ksvg/impl/SVGPathSegCurvetoQuadraticSmoothImpl.cc rename to ksvg/impl/SVGPathSegCurvetoQuadraticSmoothImpl.cpp diff --git a/ksvg/impl/SVGPathSegImpl.cc b/ksvg/impl/SVGPathSegImpl.cpp similarity index 100% rename from ksvg/impl/SVGPathSegImpl.cc rename to ksvg/impl/SVGPathSegImpl.cpp diff --git a/ksvg/impl/SVGPathSegLinetoHorizontalImpl.cc b/ksvg/impl/SVGPathSegLinetoHorizontalImpl.cpp similarity index 100% rename from ksvg/impl/SVGPathSegLinetoHorizontalImpl.cc rename to ksvg/impl/SVGPathSegLinetoHorizontalImpl.cpp diff --git a/ksvg/impl/SVGPathSegLinetoImpl.cc b/ksvg/impl/SVGPathSegLinetoImpl.cpp similarity index 100% rename from ksvg/impl/SVGPathSegLinetoImpl.cc rename to ksvg/impl/SVGPathSegLinetoImpl.cpp diff --git a/ksvg/impl/SVGPathSegLinetoVerticalImpl.cc b/ksvg/impl/SVGPathSegLinetoVerticalImpl.cpp similarity index 100% rename from ksvg/impl/SVGPathSegLinetoVerticalImpl.cc rename to ksvg/impl/SVGPathSegLinetoVerticalImpl.cpp diff --git a/ksvg/impl/SVGPathSegListImpl.cc b/ksvg/impl/SVGPathSegListImpl.cpp similarity index 100% rename from ksvg/impl/SVGPathSegListImpl.cc rename to ksvg/impl/SVGPathSegListImpl.cpp diff --git a/ksvg/impl/SVGPathSegMovetoImpl.cc b/ksvg/impl/SVGPathSegMovetoImpl.cpp similarity index 100% rename from ksvg/impl/SVGPathSegMovetoImpl.cc rename to ksvg/impl/SVGPathSegMovetoImpl.cpp diff --git a/ksvg/impl/SVGPatternElementImpl.cc b/ksvg/impl/SVGPatternElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGPatternElementImpl.cc rename to ksvg/impl/SVGPatternElementImpl.cpp diff --git a/ksvg/impl/SVGPointImpl.cc b/ksvg/impl/SVGPointImpl.cpp similarity index 100% rename from ksvg/impl/SVGPointImpl.cc rename to ksvg/impl/SVGPointImpl.cpp diff --git a/ksvg/impl/SVGPointListImpl.cc b/ksvg/impl/SVGPointListImpl.cpp similarity index 100% rename from ksvg/impl/SVGPointListImpl.cc rename to ksvg/impl/SVGPointListImpl.cpp diff --git a/ksvg/impl/SVGPolyElementImpl.cc b/ksvg/impl/SVGPolyElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGPolyElementImpl.cc rename to ksvg/impl/SVGPolyElementImpl.cpp diff --git a/ksvg/impl/SVGPolygonElementImpl.cc b/ksvg/impl/SVGPolygonElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGPolygonElementImpl.cc rename to ksvg/impl/SVGPolygonElementImpl.cpp diff --git a/ksvg/impl/SVGPolylineElementImpl.cc b/ksvg/impl/SVGPolylineElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGPolylineElementImpl.cc rename to ksvg/impl/SVGPolylineElementImpl.cpp diff --git a/ksvg/impl/SVGPreserveAspectRatioImpl.cc b/ksvg/impl/SVGPreserveAspectRatioImpl.cpp similarity index 100% rename from ksvg/impl/SVGPreserveAspectRatioImpl.cc rename to ksvg/impl/SVGPreserveAspectRatioImpl.cpp diff --git a/ksvg/impl/SVGRadialGradientElementImpl.cc b/ksvg/impl/SVGRadialGradientElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGRadialGradientElementImpl.cc rename to ksvg/impl/SVGRadialGradientElementImpl.cpp diff --git a/ksvg/impl/SVGRectElementImpl.cc b/ksvg/impl/SVGRectElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGRectElementImpl.cc rename to ksvg/impl/SVGRectElementImpl.cpp diff --git a/ksvg/impl/SVGRectImpl.cc b/ksvg/impl/SVGRectImpl.cpp similarity index 100% rename from ksvg/impl/SVGRectImpl.cc rename to ksvg/impl/SVGRectImpl.cpp diff --git a/ksvg/impl/SVGSVGElementImpl.cc b/ksvg/impl/SVGSVGElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGSVGElementImpl.cc rename to ksvg/impl/SVGSVGElementImpl.cpp diff --git a/ksvg/impl/SVGScriptElementImpl.cc b/ksvg/impl/SVGScriptElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGScriptElementImpl.cc rename to ksvg/impl/SVGScriptElementImpl.cpp diff --git a/ksvg/impl/SVGSetElementImpl.cc b/ksvg/impl/SVGSetElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGSetElementImpl.cc rename to ksvg/impl/SVGSetElementImpl.cpp diff --git a/ksvg/impl/SVGShapeImpl.cc b/ksvg/impl/SVGShapeImpl.cpp similarity index 100% rename from ksvg/impl/SVGShapeImpl.cc rename to ksvg/impl/SVGShapeImpl.cpp diff --git a/ksvg/impl/SVGStopElementImpl.cc b/ksvg/impl/SVGStopElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGStopElementImpl.cc rename to ksvg/impl/SVGStopElementImpl.cpp diff --git a/ksvg/impl/SVGStringListImpl.cc b/ksvg/impl/SVGStringListImpl.cpp similarity index 100% rename from ksvg/impl/SVGStringListImpl.cc rename to ksvg/impl/SVGStringListImpl.cpp diff --git a/ksvg/impl/SVGStylableImpl.cc b/ksvg/impl/SVGStylableImpl.cpp similarity index 100% rename from ksvg/impl/SVGStylableImpl.cc rename to ksvg/impl/SVGStylableImpl.cpp diff --git a/ksvg/impl/SVGStyleElementImpl.cc b/ksvg/impl/SVGStyleElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGStyleElementImpl.cc rename to ksvg/impl/SVGStyleElementImpl.cpp diff --git a/ksvg/impl/SVGSwitchElementImpl.cc b/ksvg/impl/SVGSwitchElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGSwitchElementImpl.cc rename to ksvg/impl/SVGSwitchElementImpl.cpp diff --git a/ksvg/impl/SVGSymbolElementImpl.cc b/ksvg/impl/SVGSymbolElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGSymbolElementImpl.cc rename to ksvg/impl/SVGSymbolElementImpl.cpp diff --git a/ksvg/impl/SVGTRefElementImpl.cc b/ksvg/impl/SVGTRefElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGTRefElementImpl.cc rename to ksvg/impl/SVGTRefElementImpl.cpp diff --git a/ksvg/impl/SVGTSpanElementImpl.cc b/ksvg/impl/SVGTSpanElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGTSpanElementImpl.cc rename to ksvg/impl/SVGTSpanElementImpl.cpp diff --git a/ksvg/impl/SVGTestsImpl.cc b/ksvg/impl/SVGTestsImpl.cpp similarity index 100% rename from ksvg/impl/SVGTestsImpl.cc rename to ksvg/impl/SVGTestsImpl.cpp diff --git a/ksvg/impl/SVGTextContentElementImpl.cc b/ksvg/impl/SVGTextContentElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGTextContentElementImpl.cc rename to ksvg/impl/SVGTextContentElementImpl.cpp diff --git a/ksvg/impl/SVGTextElementImpl.cc b/ksvg/impl/SVGTextElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGTextElementImpl.cc rename to ksvg/impl/SVGTextElementImpl.cpp diff --git a/ksvg/impl/SVGTextPathElementImpl.cc b/ksvg/impl/SVGTextPathElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGTextPathElementImpl.cc rename to ksvg/impl/SVGTextPathElementImpl.cpp diff --git a/ksvg/impl/SVGTextPositioningElementImpl.cc b/ksvg/impl/SVGTextPositioningElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGTextPositioningElementImpl.cc rename to ksvg/impl/SVGTextPositioningElementImpl.cpp diff --git a/ksvg/impl/SVGTimeScheduler.cc b/ksvg/impl/SVGTimeScheduler.cpp similarity index 100% rename from ksvg/impl/SVGTimeScheduler.cc rename to ksvg/impl/SVGTimeScheduler.cpp diff --git a/ksvg/impl/SVGTitleElementImpl.cc b/ksvg/impl/SVGTitleElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGTitleElementImpl.cc rename to ksvg/impl/SVGTitleElementImpl.cpp diff --git a/ksvg/impl/SVGTransformImpl.cc b/ksvg/impl/SVGTransformImpl.cpp similarity index 100% rename from ksvg/impl/SVGTransformImpl.cc rename to ksvg/impl/SVGTransformImpl.cpp diff --git a/ksvg/impl/SVGTransformListImpl.cc b/ksvg/impl/SVGTransformListImpl.cpp similarity index 100% rename from ksvg/impl/SVGTransformListImpl.cc rename to ksvg/impl/SVGTransformListImpl.cpp diff --git a/ksvg/impl/SVGTransformableImpl.cc b/ksvg/impl/SVGTransformableImpl.cpp similarity index 100% rename from ksvg/impl/SVGTransformableImpl.cc rename to ksvg/impl/SVGTransformableImpl.cpp diff --git a/ksvg/impl/SVGURIReferenceImpl.cc b/ksvg/impl/SVGURIReferenceImpl.cpp similarity index 100% rename from ksvg/impl/SVGURIReferenceImpl.cc rename to ksvg/impl/SVGURIReferenceImpl.cpp diff --git a/ksvg/impl/SVGUseElementImpl.cc b/ksvg/impl/SVGUseElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGUseElementImpl.cc rename to ksvg/impl/SVGUseElementImpl.cpp diff --git a/ksvg/impl/SVGVKernElementImpl.cc b/ksvg/impl/SVGVKernElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGVKernElementImpl.cc rename to ksvg/impl/SVGVKernElementImpl.cpp diff --git a/ksvg/impl/SVGViewElementImpl.cc b/ksvg/impl/SVGViewElementImpl.cpp similarity index 100% rename from ksvg/impl/SVGViewElementImpl.cc rename to ksvg/impl/SVGViewElementImpl.cpp diff --git a/ksvg/impl/SVGViewSpecImpl.cc b/ksvg/impl/SVGViewSpecImpl.cpp similarity index 100% rename from ksvg/impl/SVGViewSpecImpl.cc rename to ksvg/impl/SVGViewSpecImpl.cpp diff --git a/ksvg/impl/SVGWindowImpl.cc b/ksvg/impl/SVGWindowImpl.cpp similarity index 100% rename from ksvg/impl/SVGWindowImpl.cc rename to ksvg/impl/SVGWindowImpl.cpp diff --git a/ksvg/impl/SVGZoomAndPanImpl.cc b/ksvg/impl/SVGZoomAndPanImpl.cpp similarity index 100% rename from ksvg/impl/SVGZoomAndPanImpl.cc rename to ksvg/impl/SVGZoomAndPanImpl.cpp diff --git a/ksvg/impl/SVGZoomEventImpl.cc b/ksvg/impl/SVGZoomEventImpl.cpp similarity index 100% rename from ksvg/impl/SVGZoomEventImpl.cc rename to ksvg/impl/SVGZoomEventImpl.cpp diff --git a/ksvg/impl/libs/libtext2path/src/Cache.h b/ksvg/impl/libs/libtext2path/src/Cache.h index 39536179..6f6ca705 100644 --- a/ksvg/impl/libs/libtext2path/src/Cache.h +++ b/ksvg/impl/libs/libtext2path/src/Cache.h @@ -26,7 +26,7 @@ #include #include -#include "myboost/shared_ptr.hpp" +#include "myboost/shared_ptr.h" namespace T2P { diff --git a/ksvg/impl/libs/libtext2path/src/Converter.cpp b/ksvg/impl/libs/libtext2path/src/Converter.cpp index f8e3d20e..88af02ae 100644 --- a/ksvg/impl/libs/libtext2path/src/Converter.cpp +++ b/ksvg/impl/libs/libtext2path/src/Converter.cpp @@ -22,7 +22,7 @@ #include -#include "myboost/shared_ptr.hpp" +#include "myboost/shared_ptr.h" #include #include diff --git a/ksvg/impl/libs/libtext2path/src/myboost/assert.hpp b/ksvg/impl/libs/libtext2path/src/myboost/assert.h similarity index 87% rename from ksvg/impl/libs/libtext2path/src/myboost/assert.hpp rename to ksvg/impl/libs/libtext2path/src/myboost/assert.h index 3f3c61c2..ebedcd32 100644 --- a/ksvg/impl/libs/libtext2path/src/myboost/assert.hpp +++ b/ksvg/impl/libs/libtext2path/src/myboost/assert.h @@ -1,5 +1,5 @@ // -// boost/assert.hpp - BOOST_ASSERT(expr) +// boost/assert.h - BOOST_ASSERT(expr) // // Copyright (c) 2001, 2002 Peter Dimov and Multi Media Ltd. // @@ -13,8 +13,8 @@ // See http://www.boost.org/libs/utility/assert.html for documentation. // -#ifndef ASSERT_HPP -#define ASSERT_HPP +#ifndef ASSERT_H +#define ASSERT_H #undef BOOST_ASSERT diff --git a/ksvg/impl/libs/libtext2path/src/myboost/checked_delete.hpp b/ksvg/impl/libs/libtext2path/src/myboost/checked_delete.h similarity index 88% rename from ksvg/impl/libs/libtext2path/src/myboost/checked_delete.hpp rename to ksvg/impl/libs/libtext2path/src/myboost/checked_delete.h index 73afd5f5..ba5b534c 100644 --- a/ksvg/impl/libs/libtext2path/src/myboost/checked_delete.hpp +++ b/ksvg/impl/libs/libtext2path/src/myboost/checked_delete.h @@ -1,8 +1,8 @@ -#ifndef BOOST_CHECKED_DELETE_HPP_INCLUDED -#define BOOST_CHECKED_DELETE_HPP_INCLUDED +#ifndef BOOST_CHECKED_DELETE_H_INCLUDED +#define BOOST_CHECKED_DELETE_H_INCLUDED // -// boost/checked_delete.hpp +// boost/checked_delete.h // // Copyright (c) 1999, 2000, 2001, 2002 boost.org // Copyright (c) 2002, 2003 Peter Dimov @@ -58,4 +58,4 @@ template struct checked_array_deleter } // namespace myboost -#endif // #ifndef BOOST_CHECKED_DELETE_HPP_INCLUDED +#endif // #ifndef BOOST_CHECKED_DELETE_H_INCLUDED diff --git a/ksvg/impl/libs/libtext2path/src/myboost/lightweight_mutex.hpp b/ksvg/impl/libs/libtext2path/src/myboost/lightweight_mutex.h similarity index 86% rename from ksvg/impl/libs/libtext2path/src/myboost/lightweight_mutex.hpp rename to ksvg/impl/libs/libtext2path/src/myboost/lightweight_mutex.h index 10db127c..2c09ca8b 100644 --- a/ksvg/impl/libs/libtext2path/src/myboost/lightweight_mutex.hpp +++ b/ksvg/impl/libs/libtext2path/src/myboost/lightweight_mutex.h @@ -1,8 +1,8 @@ -#ifndef BOOST_DETAIL_LWM_PTHREADS_HPP_INCLUDED -#define BOOST_DETAIL_LWM_PTHREADS_HPP_INCLUDED +#ifndef BOOST_DETAIL_LWM_PTHREADS_H_INCLUDED +#define BOOST_DETAIL_LWM_PTHREADS_H_INCLUDED // -// boost/detail/lwm_pthreads.hpp +// boost/detail/lwm_pthreads.h // // Copyright (c) 2002 Peter Dimov and Multi Media Ltd. // @@ -71,4 +71,4 @@ public: } // namespace myboost -#endif // #ifndef BOOST_DETAIL_LWM_PTHREADS_HPP_INCLUDED +#endif // #ifndef BOOST_DETAIL_LWM_PTHREADS_H_INCLUDED diff --git a/ksvg/impl/libs/libtext2path/src/myboost/shared_count.hpp b/ksvg/impl/libs/libtext2path/src/myboost/shared_count.h similarity index 96% rename from ksvg/impl/libs/libtext2path/src/myboost/shared_count.hpp rename to ksvg/impl/libs/libtext2path/src/myboost/shared_count.h index e8ec19a8..b240ff8f 100644 --- a/ksvg/impl/libs/libtext2path/src/myboost/shared_count.hpp +++ b/ksvg/impl/libs/libtext2path/src/myboost/shared_count.h @@ -1,8 +1,8 @@ -#ifndef BOOST_DETAIL_SHARED_COUNT_HPP_INCLUDED -#define BOOST_DETAIL_SHARED_COUNT_HPP_INCLUDED +#ifndef BOOST_DETAIL_SHARED_COUNT_H_INCLUDED +#define BOOST_DETAIL_SHARED_COUNT_H_INCLUDED // -// detail/shared_count.hpp +// detail/shared_count.h // // Copyright (c) 2001, 2002, 2003 Peter Dimov and Multi Media Ltd. // @@ -12,9 +12,9 @@ // warranty, and with no claim as to its suitability for any purpose. // -#include "myboost/checked_delete.hpp" -#include "myboost/throw_exception.hpp" -#include "myboost/lightweight_mutex.hpp" +#include "myboost/checked_delete.h" +#include "myboost/throw_exception.h" +#include "myboost/lightweight_mutex.h" #include // std::auto_ptr, std::allocator #include // std::less @@ -364,4 +364,4 @@ inline shared_count::shared_count(weak_count const & r): pi_(r.pi_) } // namespace myboost -#endif // #ifndef BOOST_DETAIL_SHARED_COUNT_HPP_INCLUDED +#endif // #ifndef BOOST_DETAIL_SHARED_COUNT_H_INCLUDED diff --git a/ksvg/impl/libs/libtext2path/src/myboost/shared_ptr.hpp b/ksvg/impl/libs/libtext2path/src/myboost/shared_ptr.h similarity index 97% rename from ksvg/impl/libs/libtext2path/src/myboost/shared_ptr.hpp rename to ksvg/impl/libs/libtext2path/src/myboost/shared_ptr.h index 3f2fe30d..435be678 100644 --- a/ksvg/impl/libs/libtext2path/src/myboost/shared_ptr.hpp +++ b/ksvg/impl/libs/libtext2path/src/myboost/shared_ptr.h @@ -1,7 +1,7 @@ -#ifndef BOOST_SHARED_PTR_HPP_INCLUDED -#define BOOST_SHARED_PTR_HPP_INCLUDED +#ifndef BOOST_SHARED_PTR_H_INCLUDED +#define BOOST_SHARED_PTR_H_INCLUDED -// shared_ptr.hpp +// shared_ptr.h // // (C) Copyright Greg Colvin and Beman Dawes 1998, 1999. // Copyright (c) 2001, 2002, 2003 Peter Dimov @@ -14,10 +14,10 @@ // See http://www.boost.org/libs/smart_ptr/shared_ptr.htm for documentation. // -#include "myboost/assert.hpp" -#include "myboost/checked_delete.hpp" -#include "myboost/throw_exception.hpp" -#include "myboost/shared_count.hpp" +#include "myboost/assert.h" +#include "myboost/checked_delete.h" +#include "myboost/throw_exception.h" +#include "myboost/shared_count.h" #include // for std::auto_ptr #include // for std::swap @@ -392,4 +392,4 @@ template D * get_deleter(shared_ptr const & p) } // namespace boost -#endif // #ifndef BOOST_SHARED_PTR_HPP_INCLUDED +#endif // #ifndef BOOST_SHARED_PTR_H_INCLUDED diff --git a/ksvg/impl/libs/libtext2path/src/myboost/throw_exception.hpp b/ksvg/impl/libs/libtext2path/src/myboost/throw_exception.h similarity index 76% rename from ksvg/impl/libs/libtext2path/src/myboost/throw_exception.hpp rename to ksvg/impl/libs/libtext2path/src/myboost/throw_exception.h index dd32ec43..3223b564 100644 --- a/ksvg/impl/libs/libtext2path/src/myboost/throw_exception.hpp +++ b/ksvg/impl/libs/libtext2path/src/myboost/throw_exception.h @@ -1,9 +1,9 @@ -#ifndef BOOST_THROW_EXCEPTION_HPP_INCLUDED -#define BOOST_THROW_EXCEPTION_HPP_INCLUDED +#ifndef BOOST_THROW_EXCEPTION_H_INCLUDED +#define BOOST_THROW_EXCEPTION_H_INCLUDED // -// boost/throw_exception.hpp +// boost/throw_exception.h // // Copyright (c) 2002 Peter Dimov and Multi Media Ltd. // @@ -27,4 +27,4 @@ template void throw_exception(E const & e) } // namespace myboost -#endif // #ifndef BOOST_THROW_EXCEPTION_HPP_INCLUDED +#endif // #ifndef BOOST_THROW_EXCEPTION_H_INCLUDED diff --git a/ksvg/impl/svgpathparser.cc b/ksvg/impl/svgpathparser.cpp similarity index 100% rename from ksvg/impl/svgpathparser.cc rename to ksvg/impl/svgpathparser.cpp diff --git a/ksvg/scripts/check_hashtablesize.pl b/ksvg/scripts/check_hashtablesize.pl index d22e3f30..d460e5ad 100755 --- a/ksvg/scripts/check_hashtablesize.pl +++ b/ksvg/scripts/check_hashtablesize.pl @@ -138,10 +138,10 @@ foreach(@useresult) { my $temp = $middle[0]; if($calcMode != 2) { - $temp =~ s/.cc://; + $temp =~ s/.cpp://; $class = $temp; } else { - $temp =~ s/.cc//; + $temp =~ s/.cpp//; $class = substr($temp, 0, index($temp, ":")); } } diff --git a/ksvg/scripts/gen.sh b/ksvg/scripts/gen.sh index 9c87e22e..5e53438e 100755 --- a/ksvg/scripts/gen.sh +++ b/ksvg/scripts/gen.sh @@ -12,11 +12,11 @@ fi # make them touch $1.h -touch $1.cc +touch $1.cpp #start with copyright notices cat ../COPYRIGHTS > $1.h -cat ../COPYRIGHTS > $1.cc +cat ../COPYRIGHTS > $1.cpp # add define for multiple include problem echo "" >> $1.h @@ -27,13 +27,13 @@ echo "namespace KSVG" >> $1.h echo "{" >> $1.h echo "" >> $1.h -#include in .cc + namespace -echo "" >> $1.cc -echo "#include \"$1.h\"" >> $1.cc -echo "#include \"$1Impl.h\"" >> $1.cc -echo "" >> $1.cc -echo "using namespace KSVG;" >> $1.cc -echo "" >> $1.cc +#include in .cpp + namespace +echo "" >> $1.cpp +echo "#include \"$1.h\"" >> $1.cpp +echo "#include \"$1Impl.h\"" >> $1.cpp +echo "" >> $1.cpp +echo "using namespace KSVG;" >> $1.cpp +echo "" >> $1.cpp #go go go $cmd_awk -f ../makeheader $1 diff --git a/ksvg/scripts/genimpl.sh b/ksvg/scripts/genimpl.sh index 207e4329..c4cd1284 100755 --- a/ksvg/scripts/genimpl.sh +++ b/ksvg/scripts/genimpl.sh @@ -12,11 +12,11 @@ fi # you cant touch this touch $1Impl.h -touch $1Impl.cc +touch $1Impl.cpp #start with copyright notices cat ../COPYRIGHTS > $1Impl.h -cat ../COPYRIGHTS > $1Impl.cc +cat ../COPYRIGHTS > $1Impl.cpp # add define for multiple include problem echo "" >> $1Impl.h @@ -28,12 +28,12 @@ echo "" >> $1Impl.h echo "namespace KSVG" >> $1Impl.h echo "{" >> $1Impl.h -#include in .cc + namespace -echo "" >> $1Impl.cc -echo "#include \"$1Impl.h\"" >> $1Impl.cc -echo "" >> $1Impl.cc -echo "using namespace KSVG;" >> $1Impl.cc -echo "" >> $1Impl.cc +#include in .cpp + namespace +echo "" >> $1Impl.cpp +echo "#include \"$1Impl.h\"" >> $1Impl.cpp +echo "" >> $1Impl.cpp +echo "using namespace KSVG;" >> $1Impl.cpp +echo "" >> $1Impl.cpp #go go go $cmd_awk -f ../makeimpl $1 diff --git a/ksvg/scripts/getjs.php b/ksvg/scripts/getjs.php index 5f300fe9..514287a3 100755 --- a/ksvg/scripts/getjs.php +++ b/ksvg/scripts/getjs.php @@ -359,7 +359,7 @@ function crawlFiles($path) crawlFiles($path."/".$file); fputs($fp,"Leaving directory ".$file."\n"); } - elseif (is_file($path."/".$file) && preg_match("/^[A-Za-z0-9_]+(\.cc|\.cpp|\.h|\.hpp)$/",$file)) + elseif (is_file($path."/".$file) && preg_match("/^[A-Za-z0-9_]+(\.cpp|\.h)$/",$file)) { fputs($fp,"\tchecking $file\n"); searchKalyptusCode($path."/".$file,$fp); diff --git a/ksvg/scripts/makecc b/ksvg/scripts/makecc index 29a28b93..97eb4b74 100644 --- a/ksvg/scripts/makecc +++ b/ksvg/scripts/makecc @@ -1,6 +1,6 @@ function printg( a ) { - printf a >> FILENAME ".cc" + printf a >> FILENAME ".cpp" } function doFunc( a ) { diff --git a/ksvg/scripts/makeimpl b/ksvg/scripts/makeimpl index fb5ab8f5..e6c7b719 100644 --- a/ksvg/scripts/makeimpl +++ b/ksvg/scripts/makeimpl @@ -21,7 +21,7 @@ function printg( a ) } function printh( a ) { - printf a >> FILENAME "Impl.cc" + printf a >> FILENAME "Impl.cpp" } function doFuncCC( a, class ) { @@ -166,7 +166,7 @@ function doAttr( a, class ) printg( " " )n printg( b[nr] ");\n" ) - # do put method .cc + # do put method .cpp printtofunc( "void " clas "::set" ) printtofunc( toupper( substr( b[nr], 1, 1) ) ) printtofunc( substr( b[nr], 2) "(" ) @@ -212,7 +212,7 @@ function doAttr( a, class ) $temp = b[nr] printg( $temp "() const;\n" ) - # do get method .cc + # do get method .cpp i = 1 while ( i < nr ) { @@ -277,7 +277,7 @@ function doReadonlyAttr( a, class ) $temp = b[nr] printg( $temp "() const;\n" ) - # do get method .cc + # do get method .cpp i = 1 while ( i < nr ) { diff --git a/ksvg/test/external/CMakeLists.txt b/ksvg/test/external/CMakeLists.txt index 60c588a3..a07e0406 100644 --- a/ksvg/test/external/CMakeLists.txt +++ b/ksvg/test/external/CMakeLists.txt @@ -32,7 +32,7 @@ link_directories( ##### svgdisplay (executable) ################### tde_add_executable( svgdisplay AUTOMOC - SOURCES SVGTestWidget.cc svgdisplay.cc + SOURCES SVGTestWidget.cpp svgdisplay.cpp LINK ksvg-shared DESTINATION ${BIN_INSTALL_DIR} ) diff --git a/ksvg/test/external/Makefile.am b/ksvg/test/external/Makefile.am index 9a624667..b2b8c494 100644 --- a/ksvg/test/external/Makefile.am +++ b/ksvg/test/external/Makefile.am @@ -4,7 +4,7 @@ KDE_CXXFLAGS = $(USE_EXCEPTIONS) bin_PROGRAMS = svgdisplay printnodetest -svgdisplay_SOURCES = SVGTestWidget.cc svgdisplay.cc +svgdisplay_SOURCES = SVGTestWidget.cpp svgdisplay.cpp svgdisplay_LDADD = $(LIB_TDECORE) ../../libksvg.la svgdisplay_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_TQT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor diff --git a/ksvg/test/external/SVGTestWidget.cc b/ksvg/test/external/SVGTestWidget.cpp similarity index 100% rename from ksvg/test/external/SVGTestWidget.cc rename to ksvg/test/external/SVGTestWidget.cpp diff --git a/ksvg/test/external/svgdisplay.cc b/ksvg/test/external/svgdisplay.cpp similarity index 100% rename from ksvg/test/external/svgdisplay.cc rename to ksvg/test/external/svgdisplay.cpp diff --git a/kviewshell/plugins/djvu/libdjvu/configure.in.in b/kviewshell/plugins/djvu/libdjvu/configure.in.in index b3ebeec6..05cf6bc5 100644 --- a/kviewshell/plugins/djvu/libdjvu/configure.in.in +++ b/kviewshell/plugins/djvu/libdjvu/configure.in.in @@ -28,8 +28,8 @@ dnl ------------------------------------------------------- AC_DEFUN([AC_CHECK_CXX_OPT],[ opt="$1" AC_MSG_CHECKING([if $CXX accepts $opt]) - echo 'void f(){}' > conftest.cc - if test -z "`${CXX} ${CXXFLAGS} ${OPTS} $opt -c conftest.cc 2>&1`"; then + echo 'void f(){}' > conftest.cpp + if test -z "`${CXX} ${CXXFLAGS} ${OPTS} $opt -c conftest.cpp 2>&1`"; then AC_MSG_RESULT(yes) rm conftest.* $2 @@ -389,8 +389,8 @@ if test x$acx_cothread != xno ; then AC_MSG_RESULT($acx_cothread_patch) if test x$acx_cothread_patch = xno ; then AC_MSG_CHECKING([if the cothread patch is critical]) - echo 'void foo() { throw "Hello"; }' > conftest.cc - compile="$CXX $CXXFLAGS -c conftest.cc" + echo 'void foo() { throw "Hello"; }' > conftest.cpp + compile="$CXX $CXXFLAGS -c conftest.cpp" check="nm conftest.o | grep sjthrow | cat > conftest.out" acx_cothread_patch=yes if AC_TRY_EVAL(compile) && AC_TRY_EVAL(check) ; then diff --git a/tdefile-plugins/dependencies/poppler-tqt/CMakeLists.txt b/tdefile-plugins/dependencies/poppler-tqt/CMakeLists.txt index 2ce99412..28be343b 100644 --- a/tdefile-plugins/dependencies/poppler-tqt/CMakeLists.txt +++ b/tdefile-plugins/dependencies/poppler-tqt/CMakeLists.txt @@ -45,10 +45,10 @@ install( FILES tde_add_library( poppler-tqt SHARED AUTOMOC SOURCES - poppler-document.cc poppler-fontinfo.cc - poppler-link.cc poppler-page.cc - poppler-page-transition.cc poppler-page-transition-private.h - poppler-private.cc poppler-private.h + poppler-document.cpp poppler-fontinfo.cpp + poppler-link.cpp poppler-page.cpp + poppler-page-transition.cpp poppler-page-transition-private.h + poppler-private.cpp poppler-private.h VERSION 0.0.0 LINK ${POPPLER_LIBRARIES} ${TQT_LIBRARIES} DESTINATION ${LIB_INSTALL_DIR} diff --git a/tdefile-plugins/dependencies/poppler-tqt/Makefile.am b/tdefile-plugins/dependencies/poppler-tqt/Makefile.am index 7de8524c..09bc6fbe 100644 --- a/tdefile-plugins/dependencies/poppler-tqt/Makefile.am +++ b/tdefile-plugins/dependencies/poppler-tqt/Makefile.am @@ -15,13 +15,13 @@ poppler_include_HEADERS = \ lib_LTLIBRARIES = libpoppler-tqt.la libpoppler_tqt_la_SOURCES = \ - poppler-document.cc \ - poppler-fontinfo.cc \ - poppler-link.cc \ - poppler-page.cc \ - poppler-page-transition.cc \ + poppler-document.cpp \ + poppler-fontinfo.cpp \ + poppler-link.cpp \ + poppler-page.cpp \ + poppler-page-transition.cpp \ poppler-page-transition-private.h \ - poppler-private.cc \ + poppler-private.cpp \ poppler-private.h libpoppler_tqt_la_LIBADD = \ diff --git a/tdefile-plugins/dependencies/poppler-tqt/poppler-document.cc b/tdefile-plugins/dependencies/poppler-tqt/poppler-document.cpp similarity index 98% rename from tdefile-plugins/dependencies/poppler-tqt/poppler-document.cc rename to tdefile-plugins/dependencies/poppler-tqt/poppler-document.cpp index db403c5e..fac02a4b 100644 --- a/tdefile-plugins/dependencies/poppler-tqt/poppler-document.cc +++ b/tdefile-plugins/dependencies/poppler-tqt/poppler-document.cpp @@ -1,4 +1,4 @@ -/* poppler-document.cc: qt interface to poppler +/* poppler-document.cpp: qt interface to poppler * Copyright (C) 2005, Net Integration Technologies, Inc. * Copyright (C) 2005-2009, Albert Astals Cid * Copyright (C) 2006, Stefan Kebekus @@ -179,7 +179,7 @@ bool Document::scanForFonts( int numPages, TQValueList *fontList ) con /* borrowed from kpdf */ TQString Document::getInfo( const TQString & type ) const { - // [Albert] Code adapted from pdfinfo.cc on xpdf + // [Albert] Code adapted from pdfinfo.cpp on xpdf Object info; if ( data->locked ) return NULL; @@ -248,7 +248,7 @@ TQString Document::getInfo( const TQString & type ) const /* borrowed from kpdf */ TQDateTime Document::getDate( const TQString & type ) const { - // [Albert] Code adapted from pdfinfo.cc on xpdf + // [Albert] Code adapted from pdfinfo.cpp on xpdf if ( data->locked ) return TQDateTime(); diff --git a/tdefile-plugins/dependencies/poppler-tqt/poppler-fontinfo.cc b/tdefile-plugins/dependencies/poppler-tqt/poppler-fontinfo.cpp similarity index 100% rename from tdefile-plugins/dependencies/poppler-tqt/poppler-fontinfo.cc rename to tdefile-plugins/dependencies/poppler-tqt/poppler-fontinfo.cpp diff --git a/tdefile-plugins/dependencies/poppler-tqt/poppler-link.cc b/tdefile-plugins/dependencies/poppler-tqt/poppler-link.cpp similarity index 99% rename from tdefile-plugins/dependencies/poppler-tqt/poppler-link.cc rename to tdefile-plugins/dependencies/poppler-tqt/poppler-link.cpp index ee05eb06..99cd8cc9 100644 --- a/tdefile-plugins/dependencies/poppler-tqt/poppler-link.cc +++ b/tdefile-plugins/dependencies/poppler-tqt/poppler-link.cpp @@ -1,4 +1,4 @@ -/* poppler-link.cc: qt interface to poppler +/* poppler-link.cpp: qt interface to poppler * Copyright (C) 2006, 2008 Albert Astals Cid * Adapting code from * Copyright (C) 2004 by Enrico Ros diff --git a/tdefile-plugins/dependencies/poppler-tqt/poppler-page-transition.cc b/tdefile-plugins/dependencies/poppler-tqt/poppler-page-transition.cpp similarity index 99% rename from tdefile-plugins/dependencies/poppler-tqt/poppler-page-transition.cc rename to tdefile-plugins/dependencies/poppler-tqt/poppler-page-transition.cpp index cde8818d..015d17eb 100644 --- a/tdefile-plugins/dependencies/poppler-tqt/poppler-page-transition.cc +++ b/tdefile-plugins/dependencies/poppler-tqt/poppler-page-transition.cpp @@ -1,4 +1,4 @@ -/* PageTransition.cc +/* PageTransition.cpp * Copyright (C) 2005, Net Integration Technologies, Inc. * * This program is free software; you can redistribute it and/or modify diff --git a/tdefile-plugins/dependencies/poppler-tqt/poppler-page.cc b/tdefile-plugins/dependencies/poppler-tqt/poppler-page.cpp similarity index 99% rename from tdefile-plugins/dependencies/poppler-tqt/poppler-page.cc rename to tdefile-plugins/dependencies/poppler-tqt/poppler-page.cpp index 4293b7ce..426b750f 100644 --- a/tdefile-plugins/dependencies/poppler-tqt/poppler-page.cc +++ b/tdefile-plugins/dependencies/poppler-tqt/poppler-page.cpp @@ -1,4 +1,4 @@ -/* poppler-page.cc: qt interface to poppler +/* poppler-page.cpp: qt interface to poppler * Copyright (C) 2005, Net Integration Technologies, Inc. * Copyright (C) 2005-2006, Albert Astals Cid * Copyright (C) 2005, Tobias Koening diff --git a/tdefile-plugins/dependencies/poppler-tqt/poppler-private.cc b/tdefile-plugins/dependencies/poppler-tqt/poppler-private.cpp similarity index 100% rename from tdefile-plugins/dependencies/poppler-tqt/poppler-private.cc rename to tdefile-plugins/dependencies/poppler-tqt/poppler-private.cpp