Revision 63a644a...

Go back to digest for 7th July 2013

Optimization in Office

Friedrich W. H. Kossebau committed changes in [calligra] /:

Make arrays const which should be const

const char * x is a variable which points to const char, but can be changed itself
Fixed by either marking the * const - > const char * const x
or by removing the * and postfixing the var with the array marker [] -> const char x[]

const char * x[] is an array (of fixed size, as initialized) whose elements point to const char, but which can be changed itself
Fixed by marking the pointers const -> const char * const x[]

These fixes both result in protecting against unwanted changes and remove
one indirection, as the compiler knows at compile time which data is
really referenced by the now non-variable but const x.

File Changes

Modified 63 files
  •   braindump/src/AboutData.h
  •   flow/part/FlowAboutData.h
  •   karbon/ui/KarbonAboutData.h
  •   kexi/core/kexiaboutdata.cpp
  •   krita/ui/kis_doc2.cc
  •   libs/db/driver.cpp
  •   libs/db/expression.cpp
  •   libs/odf/KoGenStyle.cpp
  •   libs/textlayout/ListItemsHelper.cpp
  •   plan/workpackage/aboutdata.h
  •   plugins/chartshape/ChartShape.cpp
  •   sheets/part/AboutData.h
  •   sheets/part/Doc.cpp
  •   sheets/part/TabBar.cpp
  •   stage/part/KPrAboutData.h
  •   words/part/KWAboutData.h
  •   devtools/cstester/cstrunner/CSTProcessRunner.cpp
  •   libs/db/parser/extract_tokens.sh
  •   libs/db/parser/tokens.cpp
  •   libs/koproperty/editors/pointfedit.cpp
  •   libs/koproperty/editors/sizefedit.cpp
  •   libs/koreport/wrtembed/reportsection.cpp
  •   plugins/textshape/tests/TestLists.cpp
  •   words/part/author/CAuAboutData.h
  •   libs/db/drivers/sqlite/sqliteconnection.cpp
  •   stage/plugins/pageeffects/barwipe/KPrBarWipeEffectFactory.cpp
  •   stage/plugins/pageeffects/fade/KPrFadeEffectFactory.cpp
  •   stage/plugins/pageeffects/slidewipe/KPrSlideWipeEffectFactory.cpp
  •   stage/plugins/pageeffects/spacerotation/KPrSpaceRotationEffectFactory.cpp
  •   stage/plugins/pageeffects/swapeffect/KPrSwapEffectFactory.cpp
  •   filters/words/msword-odf/wv2/src/textconverter.cpp
  •   stage/plugins/pageeffects/clockwipe/clockwipe/KPrClockWipeEffectFactory.cpp
  •   stage/plugins/pageeffects/clockwipe/doublefanwipe/KPrDoubleFanWipeEffectFactory.cpp
  •   stage/plugins/pageeffects/clockwipe/doublesweepwipe/KPrDoubleSweepWipeEffectFactory.cpp
  •   stage/plugins/pageeffects/clockwipe/fanwipe/KPrFanWipeEffectFactory.cpp
  •   stage/plugins/pageeffects/clockwipe/pinwheelwipe/KPrPinWheelWipeEffectFactory.cpp
  •   stage/plugins/pageeffects/clockwipe/saloondoorwipe/KPrSaloonDoorWipeEffectFactory.cpp
  •   stage/plugins/pageeffects/clockwipe/singlesweepwipe/KPrSingleSweepWipeEffectFactory.cpp
  •   stage/plugins/pageeffects/clockwipe/windshieldwipe/KPrWindShieldWipeEffectFactory.cpp
  •   stage/plugins/pageeffects/edgewipe/barndoorwipe/BarnDoorWipeEffectFactory.cpp
  •   stage/plugins/pageeffects/edgewipe/barnveewipe/BarnVeeWipeEffectFactory.cpp
  •   stage/plugins/pageeffects/edgewipe/barnzigzagwipe/BarnZigZagWipeEffectFactory.cpp
  •   stage/plugins/pageeffects/edgewipe/boxwipe/BoxWipeEffectFactory.cpp
  •   stage/plugins/pageeffects/edgewipe/diagonalwipe/DiagonalWipeEffectFactory.cpp
  •   stage/plugins/pageeffects/edgewipe/fourboxwipe/FourBoxWipeEffectFactory.cpp
  •   stage/plugins/pageeffects/edgewipe/miscdiagonalwipe/MiscDiagonalWipeEffectFactory.cpp
  •   stage/plugins/pageeffects/edgewipe/veewipe/VeeWipeEffectFactory.cpp
  •   stage/plugins/pageeffects/edgewipe/zigzagwipe/ZigZagWipeEffectFactory.cpp
  •   stage/plugins/pageeffects/iriswipe/arrowHeadWipe/KPrArrowHeadWipeEffectFactory.cpp
  •   stage/plugins/pageeffects/iriswipe/ellipseWipe/KPrEllipseWipeEffectFactory.cpp
  •   stage/plugins/pageeffects/iriswipe/eyeWipe/KPrEyeWipeEffectFactory.cpp
  •   stage/plugins/pageeffects/iriswipe/hexagonWipe/KPrHexagonWipeEffectFactory.cpp
  •   stage/plugins/pageeffects/iriswipe/irisWipe/KPrIrisWipeEffectFactory.cpp
  •   stage/plugins/pageeffects/iriswipe/miscShapeWipe/KPrMiscShapeWipeEffectFactory.cpp
  •   stage/plugins/pageeffects/iriswipe/pentagonWipe/KPrPentagonWipeEffectFactory.cpp
  •   stage/plugins/pageeffects/iriswipe/roundRectWipe/KPrRoundRectWipeEffectFactory.cpp
  •   stage/plugins/pageeffects/iriswipe/starWipe/KPrStarWipeEffectFactory.cpp
  •   stage/plugins/pageeffects/iriswipe/triangleWipe/KPrTriangleWipeEffectFactory.cpp
  •   stage/plugins/pageeffects/matrixwipe/boxsnakes/KPrBoxSnakesWipeEffectFactory.cpp
  •   stage/plugins/pageeffects/matrixwipe/parallelsnakes/KPrParallelSnakesWipeEffectFactory.cpp
  •   stage/plugins/pageeffects/matrixwipe/snakewipe/KPrSnakeWipeEffectFactory.cpp
  •   stage/plugins/pageeffects/matrixwipe/spiralwipe/KPrSpiralWipeEffectFactory.cpp
  •   stage/plugins/pageeffects/matrixwipe/waterfallwipe/KPrWaterfallWipeEffectFactory.cpp
63 files changed in total