summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLucas De Marchi <lucas.demarchi@profusion.mobi>2010-09-20 17:09:13 +0000
committerLucas De Marchi <lucas.demarchi@profusion.mobi>2010-09-20 17:09:13 +0000
commit24909ec041ad16f1ea49abc8484954944b864b2e (patch)
tree87bf3edf6a4a9cc96ce882bcdc683ea81aa230b5
parent2ef97d225299808358345e9599d72aa66fa42746 (diff)
downloadimlib2-24909ec041ad16f1ea49abc8484954944b864b2e.tar.gz
Fix typos
"he->the" where appropriate SVN revision: 52493
-rw-r--r--src/lib/image.c10
-rw-r--r--src/lib/scale.c2
2 files changed, 6 insertions, 6 deletions
diff --git a/src/lib/image.c b/src/lib/image.c
index b03fd07..d404961 100644
--- a/src/lib/image.c
+++ b/src/lib/image.c
@@ -488,7 +488,7 @@ __imlib_AddImagePixmapToCache(ImlibImagePixmap * ip)
pixmaps = ip;
}
-/* remove a pixmap cache struct fromt he pixmap cache */
+/* remove a pixmap cache struct from the pixmap cache */
void
__imlib_RemoveImagePixmapFromCache(ImlibImagePixmap * ip)
{
@@ -589,7 +589,7 @@ __imlib_ProduceLoader(char *file)
return l;
}
-/* list all the filenames of loaders int he system loaders dir and the user */
+/* list all the filenames of loaders in the system loaders dir and the user */
/* loader dir */
char **
__imlib_ListLoaders(int *num_ret)
@@ -821,7 +821,7 @@ __imlib_FindBestLoaderForFile(const char *file, int for_save)
extension = __imlib_FileExtension(rfile);
free(rfile);
/* change the extensiont o all lower case as all "types" are listed as */
- /* lower case strings fromt he loader that represent all the possible */
+ /* lower case strings from the loader that represent all the possible */
/* extensions that file format could have */
lower = extension;
while (*lower)
@@ -839,7 +839,7 @@ __imlib_FindBestLoaderForFile(const char *file, int for_save)
/* systematically go from most recently used to least recently used */
/* loader until one succeeds - or none are left and all have failed */
/* and only if all fail does the laod fail. the lao9der that does */
- /* succeed gets it way tot he head of the list so it's going */
+ /* succeed gets it way to the head of the list so it's going */
/* to be used first next time in this search mechanims - this */
/* assumes you tend to laod a few image types and ones generally */
/* of the same format */
@@ -887,7 +887,7 @@ __imlib_FindBestLoaderForFileFormat(const char *file, char *format,
{
extension = __imlib_FileExtension(file);
/* change the extension to all lower case as all "types" are listed as */
- /* lower case strings fromt he loader that represent all the possible */
+ /* lower case strings from the loader that represent all the possible */
/* extensions that file format could have */
if (extension)
{
diff --git a/src/lib/scale.c b/src/lib/scale.c
index 0b7e9d3..0edcf14 100644
--- a/src/lib/scale.c
+++ b/src/lib/scale.c
@@ -288,7 +288,7 @@ __imlib_ScaleSampleRGBA(ImlibScaleInfo * isi, DATA32 * dest, int dxx, int dyy,
DATA32 **ypoints = isi->ypoints;
int *xpoints = isi->xpoints;
- /* whats the last pixel ont he line so we stop there */
+ /* whats the last pixel on the line so we stop there */
end = dxx + dw;
/* go through every scanline in the output buffer */
for (y = 0; y < dh; y++)