[Podofo-svn] SF.net SVN: podofo:[1564] podofo/trunk/src/doc/PdfPainter.cpp
A PDF parsing, modification and creation library.
Brought to you by:
domseichter
|
From: <dom...@us...> - 2013-10-11 12:54:56
|
Revision: 1564
http://sourceforge.net/p/podofo/code/1564
Author: domseichter
Date: 2013-10-11 12:54:51 +0000 (Fri, 11 Oct 2013)
Log Message:
-----------
FIXED: Added missing space in SetLineJoinStyle
Modified Paths:
--------------
podofo/trunk/src/doc/PdfPainter.cpp
Modified: podofo/trunk/src/doc/PdfPainter.cpp
===================================================================
--- podofo/trunk/src/doc/PdfPainter.cpp 2013-10-06 19:06:54 UTC (rev 1563)
+++ podofo/trunk/src/doc/PdfPainter.cpp 2013-10-11 12:54:51 UTC (rev 1564)
@@ -28,7 +28,8 @@
* version of the file(s), but you are not obligated to do so. If you *
* do not wish to do so, delete this exception statement from your *
* version. If you delete this exception statement from all source *
- * files in the program, then also delete it here. * ***************************************************************************/
+ * files in the program, then also delete it here. *
+ ***************************************************************************/
#if defined(_MSC_VER) && _MSC_VER <= 1200
#pragma warning(disable: 4786)
@@ -65,7 +66,7 @@
#define BEZIER_POINTS 13
-/* 4/3 * (1-cos 45\x83)/sin 45\x83 = 4/3 * sqrt(2) - 1 */
+/* 4/3 * (1-cos 45,A0(B)/sin 45,A0(B = 4/3 * sqrt(2) - 1 */
#define ARC_MAGIC 0.552284749f
#define PI 3.141592654f
@@ -430,7 +431,7 @@
PODOFO_RAISE_LOGIC_IF( !m_pCanvas, "Call SetPage() first before doing drawing operations." );
m_oss.str("");
- m_oss << static_cast<int>(eJoinStyle) << "j" << std::endl;
+ m_oss << static_cast<int>(eJoinStyle) << " j" << std::endl;
m_pCanvas->Append( m_oss.str() );
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|