On 2016-09-11 Andreas Metzler <[email protected]> wrote:
> find attached a trivial typo fix for hugin rc2.
There is another one, updated patch (including the original one)
attached.
cu Andreas
--
`What a good friend you are to him, Dr. Maturin. His other friends are
so grateful to you.'
`I sew his ears on from time to time, sure'
--
A list of frequently asked questions is available at:
http://wiki.panotools.org/Hugin_FAQ
---
You received this message because you are subscribed to the Google Groups
"hugin and other free panoramic software" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/hugin-ptx/20160911140439.xn3p3w3yjjn4n4me%40argenau.bebt.de.
For more options, visit https://groups.google.com/d/optout.
diff -r 2c4c87077293 doc/cpfind.pod
--- a/doc/cpfind.pod Fri Aug 26 17:35:39 2016 +0200
+++ b/doc/cpfind.pod Sun Sep 11 16:03:21 2016 +0200
@@ -23,7 +23,7 @@
In a second step, the feature matching, all keypoints of two images are matched
against each other to find features which are on both images. If this matching
-was successfull two keypoints in the two images become one control point.
+was successful two keypoints in the two images become one control point.
=head1 USAGE
diff -r 2c4c87077293 src/foreign/levmar/Axb_core.c
--- a/src/foreign/levmar/Axb_core.c Fri Aug 26 17:35:39 2016 +0200
+++ b/src/foreign/levmar/Axb_core.c Sun Sep 11 16:03:21 2016 +0200
@@ -623,7 +623,7 @@
*
* A is mxm, b is mx1
*
- * The function returns 0 in case of error, 1 if successfull
+ * The function returns 0 in case of error, 1 if successful
*
* This function is often called repetitively to solve problems of identical
* dimensions. To avoid repetitive malloc's and free's, allocated memory is
@@ -991,7 +991,7 @@
*
* A is mxm, b is mx1.
*
- * The function returns 0 in case of error, 1 if successfull
+ * The function returns 0 in case of error, 1 if successful
*
* This function is often called repetitively to solve problems of identical
* dimensions. To avoid repetitive malloc's and free's, allocated memory is
diff -r 2c4c87077293 src/hugin1/hugin/TextureManager.cpp
--- a/src/hugin1/hugin/TextureManager.cpp Fri Aug 26 17:35:39 2016 +0200
+++ b/src/hugin1/hugin/TextureManager.cpp Sun Sep 11 16:03:21 2016 +0200
@@ -1012,7 +1012,7 @@
error = glGetError();
if (error != GL_NO_ERROR)
{
- DEBUG_ERROR("GL Error when bulding mipmap levels: "
+ DEBUG_ERROR("GL Error when building mipmap levels: "
<< gluErrorString(error) << ".");
}
SetParameters();
diff -r 2c4c87077293 src/hugin_base/appbase/ProgressDisplay.h
--- a/src/hugin_base/appbase/ProgressDisplay.h Fri Aug 26 17:35:39 2016 +0200
+++ b/src/hugin_base/appbase/ProgressDisplay.h Sun Sep 11 16:03:21 2016 +0200
@@ -50,7 +50,7 @@
void setMessage(const std::string& message, const std::string& filename="");
/** call when a task has finished and the status message should be cleared */
void taskFinished();
- /** updates the display, return true, if update was successfull, false if cancel was pressed */
+ /** updates the display, return true, if update was successful, false if cancel was pressed */
bool updateDisplay();
bool updateDisplay(const std::string& message);
bool updateDisplayValue();