diff --git a/krita/data/palettes/default.gpl b/krita/data/palettes/default.gpl --- a/krita/data/palettes/default.gpl +++ b/krita/data/palettes/default.gpl @@ -71,7 +71,7 @@ 255 0 127 Deep pink 255 0 0 RGB Red 127 0 0 Deep carmine -10 10 0 Rasberry black +10 10 0 Raspberry black 246 253 255 cold white 233 247 255 frost blue 207 230 254 Ice blue diff --git a/libs/image/kis_abstract_projection_plane.h b/libs/image/kis_abstract_projection_plane.h --- a/libs/image/kis_abstract_projection_plane.h +++ b/libs/image/kis_abstract_projection_plane.h @@ -86,7 +86,7 @@ virtual QRect needRectForOriginal(const QRect &rect) const = 0; /** - * Return a tight rectange, where the contents of the plane + * Return a tight rectangle, where the contents of the plane * is placed from user's point of view. It includes everything * belonging to the plane (e.g. layer styles). */ diff --git a/libs/image/kis_image.h b/libs/image/kis_image.h --- a/libs/image/kis_image.h +++ b/libs/image/kis_image.h @@ -416,7 +416,7 @@ * Returns the current undo adapter. You can add new commands to the * undo stack using the adapter. This adapter is used for a backward * compatibility for old commands created before strokes. It blocks - * all the porcessing at the scheduler, waits until it's finished + * all the processing at the scheduler, waits until it's finished * and executes commands exclusively. */ KisUndoAdapter* undoAdapter() const; diff --git a/libs/image/kis_layer.h b/libs/image/kis_layer.h --- a/libs/image/kis_layer.h +++ b/libs/image/kis_layer.h @@ -219,7 +219,7 @@ bool hasClones() const; /** - * It is calles by the async merger after projection update is done + * It is called by the async merger after projection update is done */ void updateClones(const QRect &rect); @@ -252,7 +252,7 @@ QImage createThumbnailForFrame(qint32 w, qint32 h, int time) override; /** - * Return a tight rectange, where the contents of the layer + * Return a tight rectangle, where the contents of the layer * is placed from user's point of view. This rectangle includes * all the masks and effects the layer has (excluding layer * styles, they report their bounds via projection plane). diff --git a/libs/image/kis_layer.cc b/libs/image/kis_layer.cc --- a/libs/image/kis_layer.cc +++ b/libs/image/kis_layer.cc @@ -851,7 +851,7 @@ } } - // TODO: string comparizon: optimize! + // TODO: string comparison: optimize! if (pos != KisNode::N_FILTHY && pos != KisNode::N_FILTHY_PROJECTION && compositeOpId() != COMPOSITE_COPY) { diff --git a/libs/image/kis_mask.cc b/libs/image/kis_mask.cc --- a/libs/image/kis_mask.cc +++ b/libs/image/kis_mask.cc @@ -62,7 +62,7 @@ * device belongs to the node, but not to the device itself. So * the offset is set when the node is created, but not when the * selection is initialized. This causes the X,Y values to be - * lost, since the selection doen not exist at the moment. That is + * lost, since the selection does not exist at the moment. That is * why we save it separately. */ QScopedPointer deferredSelectionOffset; diff --git a/libs/image/kis_merge_walker.h b/libs/image/kis_merge_walker.h --- a/libs/image/kis_merge_walker.h +++ b/libs/image/kis_merge_walker.h @@ -69,16 +69,16 @@ private: /** - * Visits a node @leaf and goes on crowling - * towards the top of the graph, caling visitHigherNode() or + * Visits a node @leaf and goes on crawling + * towards the top of the graph, calling visitHigherNode() or * startTrip() one more time. After the top is reached * returns back to the @leaf. */ void visitHigherNode(KisProjectionLeafSP leaf, NodePosition positionToFilthy); /** - * Visits a node @leaf and goes on crowling - * towards the bottom of the graph, caling visitLowerNode() or + * Visits a node @leaf and goes on crawling + * towards the bottom of the graph, calilng visitLowerNode() or * startTrip() one more time. */ void visitLowerNode(KisProjectionLeafSP leaf); diff --git a/libs/image/kis_merge_walker.cc b/libs/image/kis_merge_walker.cc --- a/libs/image/kis_merge_walker.cc +++ b/libs/image/kis_merge_walker.cc @@ -62,7 +62,7 @@ /** * Under very rare circumstances it may happen that the update * queue will contain a job pointing to a node that has - * already been deleted from the image (direclty or by undo + * already been deleted from the image (directly or by undo * command). If it happens to a layer then the walker will * handle it as usual by building a trivial graph pointing to * nowhere, but when it happens to a mask... not. Because the diff --git a/libs/image/kis_painter.cc b/libs/image/kis_painter.cc --- a/libs/image/kis_painter.cc +++ b/libs/image/kis_painter.cc @@ -464,7 +464,7 @@ if (srcRect->isEmpty()) return true; - // Readjust the function paramenters to the new dimensions. + // Readjust the function parameters to the new dimensions. *dstX += srcRect->x() - *srcX; // This will only add, not subtract *dstY += srcRect->y() - *srcY; // Idem srcRect->getRect(srcX, srcY, srcWidth, srcHeight); diff --git a/libs/image/kis_processing_applicator.h b/libs/image/kis_processing_applicator.h --- a/libs/image/kis_processing_applicator.h +++ b/libs/image/kis_processing_applicator.h @@ -81,7 +81,7 @@ /** * @brief runSingleCommandStroke creates a stroke and runs \p cmd in it. - * The text() field fo \p cmd is used as a title of the stroke. + * The text() field of \p cmd is used as a title of the stroke. * @param image the image to run the stroke on * @param cmd the command to be executed * @param sequentiality sequentiality property of the command being executed (see strokes documentation) diff --git a/libs/image/kis_suspend_projection_updates_stroke_strategy.cpp b/libs/image/kis_suspend_projection_updates_stroke_strategy.cpp --- a/libs/image/kis_suspend_projection_updates_stroke_strategy.cpp +++ b/libs/image/kis_suspend_projection_updates_stroke_strategy.cpp @@ -329,11 +329,11 @@ void undo() override { /** - * Even though this comand is the last command of the stroke is can + * Even though this command is the last command of the stroke is can * still be undone by suspendStrokeCallback(). It happens when a LodN * stroke is started right after the last job of resume strategy was * being executed. In such a case new stroke is placed right in front - * of our resume strategy and all the resuming work is undone (mimicing + * of our resume strategy and all the resuming work is undone (mimicking * a normal suspend strategy). * * The only thing we should control here is whether the state of the diff --git a/libs/image/lazybrush/patched_boykov_kolmogorov_max_flow.hpp b/libs/image/lazybrush/patched_boykov_kolmogorov_max_flow.hpp --- a/libs/image/lazybrush/patched_boykov_kolmogorov_max_flow.hpp +++ b/libs/image/lazybrush/patched_boykov_kolmogorov_max_flow.hpp @@ -49,7 +49,7 @@ #include #include -// The algorithm impelemented here is described in: +// The algorithm implemented here is described in: // // Boykov, Y., Kolmogorov, V. "An Experimental Comparison of Min-Cut/Max-Flow // Algorithms for Energy Minimization in Vision", In IEEE Transactions on @@ -327,7 +327,7 @@ * target(e, m_g) is the beginning of the path found in the sink-tree * this phase generates orphans on satured edges, if the attached verts are * from different search-trees orphans are ordered in distance to - * sink/source. first the farest from the source are front_inserted into + * sink/source. first the farthest from the source are front_inserted into * the orphans list, and after that the sink-tree-orphans are * front_inserted. when going to adoption stage the orphans are popped_front, * and so we process the nearest verts to the terminals first diff --git a/libs/image/tiles3/kis_tiled_data_manager.h b/libs/image/tiles3/kis_tiled_data_manager.h --- a/libs/image/tiles3/kis_tiled_data_manager.h +++ b/libs/image/tiles3/kis_tiled_data_manager.h @@ -192,7 +192,7 @@ } /** - * Removes all the history that preceds the revision + * Removes all the history that precedes the revision * pointed by oldestMemento. That is after calling to * purgeHistory(someMemento) you won't be able to do * rollback(someMemento) anymore. diff --git a/libs/image/tiles3/kis_tiled_data_manager.cc b/libs/image/tiles3/kis_tiled_data_manager.cc --- a/libs/image/tiles3/kis_tiled_data_manager.cc +++ b/libs/image/tiles3/kis_tiled_data_manager.cc @@ -693,7 +693,7 @@ qint32 dataRowStride) { QWriteLocker locker(&m_lock); - // Actial bytes reading/writing is done in private header + // Actual bytes reading/writing is done in private header writeBytesBody(data, x, y, width, height, dataRowStride); } @@ -713,7 +713,7 @@ qint32 width, qint32 height) const { QReadLocker locker(&m_lock); - // Actial bytes reading/writing is done in private header + // Actual bytes reading/writing is done in private header return readPlanarBytesBody(channelSizes, x, y, width, height); } @@ -724,7 +724,7 @@ qint32 width, qint32 height) { QWriteLocker locker(&m_lock); - // Actial bytes reading/writing is done in private header + // Actual bytes reading/writing is done in private header bool allChannelsPresent = true; diff --git a/libs/metadata/kis_meta_data_schema.cc b/libs/metadata/kis_meta_data_schema.cc --- a/libs/metadata/kis_meta_data_schema.cc +++ b/libs/metadata/kis_meta_data_schema.cc @@ -267,7 +267,7 @@ const TypeInfo* Schema::Private::parseEmbType(QDomElement& elt, bool ignoreStructure) { - dbgMetaData << "Parse embbedded type for " << elt.tagName(); + dbgMetaData << "Parse embedded type for " << elt.tagName(); QDomNode n = elt.firstChild(); while (!n.isNull()) { QDomElement e = n.toElement(); diff --git a/libs/pigment/KoLabColorSpaceTraits.h b/libs/pigment/KoLabColorSpaceTraits.h --- a/libs/pigment/KoLabColorSpaceTraits.h +++ b/libs/pigment/KoLabColorSpaceTraits.h @@ -26,7 +26,7 @@ * LAB traits, it provides some convenient functions to * access LAB channels through an explicit API. * - * Use this class in conjonction with KoColorSpace::toLabA16 and + * Use this class in conjunction with KoColorSpace::toLabA16 and * KoColorSpace::fromLabA16 data. * * Example: diff --git a/libs/pigment/Mainpage.dox b/libs/pigment/Mainpage.dox --- a/libs/pigment/Mainpage.dox +++ b/libs/pigment/Mainpage.dox @@ -2,7 +2,7 @@ * \mainpage * Pigment is a Color Manipulation System with pluggable color spaces. Color spaces * can be based on the LCMS library, or using - * the OpenCTL implmentation of the Color + * the OpenCTL implementation of the Color * Transformation Langboth are optional. * * Pigment color spaces offers support for many common manipulations and for diff --git a/libs/ui/widgets/kis_floating_message.h b/libs/ui/widgets/kis_floating_message.h --- a/libs/ui/widgets/kis_floating_message.h +++ b/libs/ui/widgets/kis_floating_message.h @@ -35,7 +35,7 @@ /** * @brief The KisFloatingMessage class shows the given message in a semi-transparent - * bubble that doesn' take focus and slowly fades away. + * bubble that doesn't take focus and slowly fades away. * * Heavily based on Amarok's Osd.cpp */ diff --git a/libs/widgets/KoResourceServer.h b/libs/widgets/KoResourceServer.h --- a/libs/widgets/KoResourceServer.h +++ b/libs/widgets/KoResourceServer.h @@ -417,7 +417,7 @@ /** - * Addes an observer to the server + * Adds an observer to the server * @param observer the observer to be added * @param notifyLoadedResources determines if the observer should be notified about the already loaded resources */ diff --git a/libs/widgetutils/xmlgui/kxmlguifactory_p.cpp b/libs/widgetutils/xmlgui/kxmlguifactory_p.cpp --- a/libs/widgetutils/xmlgui/kxmlguifactory_p.cpp +++ b/libs/widgetutils/xmlgui/kxmlguifactory_p.cpp @@ -110,7 +110,7 @@ /* * Check if the given container widget is a child of this node and return the node structure - * if fonud. + * if found. */ ContainerNode *ContainerNode::findContainerNode(QWidget *container) { diff --git a/plugins/dockers/layerdocker/NodeDelegate.cpp b/plugins/dockers/layerdocker/NodeDelegate.cpp --- a/plugins/dockers/layerdocker/NodeDelegate.cpp +++ b/plugins/dockers/layerdocker/NodeDelegate.cpp @@ -143,7 +143,7 @@ { QModelIndex tmp = index.parent(); - // there is no indention if we have no parent group, so don't draw a branch + // there is no indentation if we have no parent group, so don't draw a branch if (!tmp.isValid()) return; KisNodeViewColorScheme scm; diff --git a/plugins/tools/basictools/kis_tool_move.cc b/plugins/tools/basictools/kis_tool_move.cc --- a/plugins/tools/basictools/kis_tool_move.cc +++ b/plugins/tools/basictools/kis_tool_move.cc @@ -201,7 +201,7 @@ strategy = moveStrategy; } - // disable outline feedback until the stroke calcualtes + // disable outline feedback until the stroke calculates // correct bounding rect m_handlesRect = QRect(); m_strokeId = image->startStroke(strategy); diff --git a/plugins/tools/basictools/kis_tool_multihand.cpp b/plugins/tools/basictools/kis_tool_multihand.cpp --- a/plugins/tools/basictools/kis_tool_multihand.cpp +++ b/plugins/tools/basictools/kis_tool_multihand.cpp @@ -266,7 +266,7 @@ // fill in a dot for the origin if showing axis if (m_showAxes) { - // draw a dot at the origin point to help with precisly moving + // draw a dot at the origin point to help with precisely moving QPainterPath dotPath; int dotRadius = 4; dotPath.moveTo(m_axesPoint.x(), m_axesPoint.y()); diff --git a/plugins/tools/defaulttool/defaulttool/DefaultTool.cpp b/plugins/tools/defaulttool/defaulttool/DefaultTool.cpp --- a/plugins/tools/defaulttool/defaulttool/DefaultTool.cpp +++ b/plugins/tools/defaulttool/defaulttool/DefaultTool.cpp @@ -779,7 +779,7 @@ KoInteractionTool::mouseReleaseEvent(event); updateCursor(); - // This makes sure the decorations that are shown are refreshed. especally the "T" icon + // This makes sure the decorations that are shown are refreshed. Especially the "T" icon canvas()->updateCanvas(QRectF(0,0,canvas()->canvasWidget()->width(), canvas()->canvasWidget()->height())); } diff --git a/plugins/tools/karbonplugins/tools/CalligraphyTool/BUGS b/plugins/tools/karbonplugins/tools/CalligraphyTool/BUGS --- a/plugins/tools/karbonplugins/tools/CalligraphyTool/BUGS +++ b/plugins/tools/karbonplugins/tools/CalligraphyTool/BUGS @@ -1,7 +1,7 @@ BUGS: * freehand drawing tool with curve: sometimes the result disappears (seems to be caused by bezierFit receiving two points in sequence that are the same) * when painting something at the side it becomes impossible to scroll to all areas of the screen -* when painting while the view is zoomed in very much in, the item may get somewere outside the visible area. +* when painting while the view is zoomed in very much in, the item may get somewhere outside the visible area. * ctrl+mouse weel zoom don't center correctly * at times the cpu usage remains very high even without doing anything (shape proprieties seem to be the cause) * colors used are not those of the global palette (I think) diff --git a/plugins/tools/karbonplugins/tools/CalligraphyTool/tutorial/TUTORIAL b/plugins/tools/karbonplugins/tools/CalligraphyTool/tutorial/TUTORIAL --- a/plugins/tools/karbonplugins/tools/CalligraphyTool/tutorial/TUTORIAL +++ b/plugins/tools/karbonplugins/tools/CalligraphyTool/tutorial/TUTORIAL @@ -50,7 +50,7 @@ Following an Existing Path ========================== -When checking the "Follow selected path" option the stroke will follow the outline of the currently selected path, instead of following the mouse or tablet position. This way you can use the calligraphy tool to draw poligons, stars, etc. Or you can fist use the path tool to create a precise guide path, and than use the calligraphy tool on the created path. +When checking the "Follow selected path" option the stroke will follow the outline of the currently selected path, instead of following the mouse or tablet position. This way you can use the calligraphy tool to draw polygons, stars, etc. Or you can fist use the path tool to create a precise guide path, and than use the calligraphy tool on the created path. Width & Thinning diff --git a/plugins/tools/selectiontools/KisToolSelectMagnetic.cc b/plugins/tools/selectiontools/KisToolSelectMagnetic.cc --- a/plugins/tools/selectiontools/KisToolSelectMagnetic.cc +++ b/plugins/tools/selectiontools/KisToolSelectMagnetic.cc @@ -682,7 +682,7 @@ anchorGapInput->setObjectName("anchorgap"); anchorGapInput->setRange(20, 200); anchorGapInput->setSingleStep(10); - anchorGapInput->setToolTip("Gap between 2 anchors in interative mode"); + anchorGapInput->setToolTip("Gap between 2 anchors in interactive mode"); anchorGapInput->setSuffix(" px"); f4->addWidget(anchorGapInput); diff --git a/plugins/tools/tool_transform2/tool_transform_args.cc b/plugins/tools/tool_transform2/tool_transform_args.cc --- a/plugins/tools/tool_transform2/tool_transform_args.cc +++ b/plugins/tools/tool_transform2/tool_transform_args.cc @@ -458,7 +458,7 @@ if(args.m_mode == CAGE){ // Pixel precision is a parameter introduced in Krita 4.2, so we should // expect it not being present in older files. In case it is not found, - // just use the defalt value initialized by c-tor (that is, do nothing). + // just use the default value initialized by c-tor (that is, do nothing). (void) KisDomUtils::loadValue(warpEl, "pixelPrecision", &args.m_pixelPrecision); (void) KisDomUtils::loadValue(warpEl, "previewPixelPrecision", &args.m_previewPixelPrecision);