Fix my common typo "completelly" instead of "completely"

This commit is contained in:
David Capello 2018-05-24 14:21:00 -03:00
parent a845b098d9
commit 0f51467768
8 changed files with 14 additions and 14 deletions

View File

@ -44,7 +44,7 @@ namespace app {
class InvalidAreaException : public base::Exception {
public:
InvalidAreaException() throw()
: base::Exception("The current mask/area to apply the effect is completelly invalid.") { }
: base::Exception("The current mask/area to apply the effect is completely invalid.") { }
};
class NoImageException : public base::Exception {

View File

@ -1,5 +1,5 @@
// Aseprite
// Copyright (C) 2001-2017 David Capello
// Copyright (C) 2001-2018 David Capello
//
// This program is distributed under the terms of
// the End-User License Agreement for Aseprite.
@ -60,7 +60,7 @@ private:
FilterManagerImpl* m_filterMgr; // Effect to be applied.
base::mutex m_mutex; // Mutex to access to 'pos', 'done' and 'cancelled' fields in different threads.
float m_pos; // Current progress position
bool m_done; // Was the effect completelly applied?
bool m_done; // Was the effect completely applied?
bool m_cancelled; // Was the effect cancelled by the user?
bool m_abort; // An exception was thrown
ui::Timer m_timer; // Monitoring timer to update the progress-bar

View File

@ -1,5 +1,5 @@
// Aseprite
// Copyright (C) 2001-2017 David Capello
// Copyright (C) 2001-2018 David Capello
//
// This program is distributed under the terms of
// the End-User License Agreement for Aseprite.
@ -561,7 +561,7 @@ void ReplaceInkProcessing<RgbTraits>::processPixel(int x, int y) {
color_t src = (*m_srcAddress);
// Colors (m_srcAddress and m_color1) match if:
// * They are both completelly transparent (alpha == 0)
// * They are both completely transparent (alpha == 0)
// * Or they are not transparent and the RGB values are the same
if ((rgba_geta(src) == 0 && rgba_geta(m_color1) == 0) ||
(rgba_geta(src) > 0 && rgba_geta(m_color1) > 0 &&

View File

@ -79,7 +79,7 @@ void ToolLoopManager::pressButton(const Pointer& pointer)
// If the user pressed the other mouse button...
if ((m_toolLoop->getMouseButton() == ToolLoop::Left && pointer.button() == Pointer::Right) ||
(m_toolLoop->getMouseButton() == ToolLoop::Right && pointer.button() == Pointer::Left)) {
// Cancel the tool-loop (the destination image should be completelly discarded)
// Cancel the tool-loop (the destination image should be completely discarded)
m_toolLoop->cancel();
return;
}

View File

@ -1,5 +1,5 @@
// Aseprite Document Library
// Copyright (c) 2001-2017 David Capello
// Copyright (c) 2001-2018 David Capello
//
// This file is released under the terms of the MIT license.
// Read LICENSE.txt for more information.
@ -184,7 +184,7 @@ void fixup_image_transparent_colors(Image* image)
for (x=0; x<image->width(); ++x, ++it) {
uint32_t c = *it;
// if this is a completelly-transparent pixel...
// if this is a completely-transparent pixel...
if (rgba_geta(c) == 0) {
count = 0;
r = g = b = 0;
@ -224,7 +224,7 @@ void fixup_image_transparent_colors(Image* image)
for (x=0; x<image->width(); ++x, ++it) {
uint16_t c = *it;
// If this is a completelly-transparent pixel...
// If this is a completely-transparent pixel...
if (graya_geta(c) == 0) {
count = 0;
k = 0;

View File

@ -1,5 +1,5 @@
// Aseprite Document Library
// Copyright (c) 2001-2016 David Capello
// Copyright (c) 2001-2018 David Capello
//
// This file is released under the terms of the MIT license.
// Read LICENSE.txt for more information.
@ -33,7 +33,7 @@ namespace doc {
color_t maskColor);
// It does not modify the image to the human eye, but internally
// tries to fixup all colors that are completelly transparent
// tries to fixup all colors that are completely transparent
// (alpha = 0) with the average of its 4-neighbors. Useful if you
// want to use resize_image() with images that contains
// transparent pixels.

View File

@ -1,5 +1,5 @@
// Aseprite Document Library
// Copyright (c) 2001-2017 David Capello
// Copyright (c) 2001-2018 David Capello
//
// This file is released under the terms of the MIT license.
// Read LICENSE.txt for more information.
@ -81,7 +81,7 @@ namespace doc {
return !operator==(other);
}
// Returns true if the palette is completelly black.
// Returns true if the palette is completely black.
bool isBlack() const;
void makeBlack();

View File

@ -441,7 +441,7 @@ int ListBox::advanceIndexThroughVisibleItems(
Widget* item = getChildByIndex(index);
if (item &&
!item->hasFlags(HIDDEN) &&
// We can completelly ignore separators from navigation
// We can completely ignore separators from navigation
// keys.
!dynamic_cast<Separator*>(item)) {
lastVisibleIndex = index;