r23667 by craig - Fix indentation

scribus-commit scribus-commit at lists.scribus.net
Sun Apr 26 21:54:57 UTC 2020


Author: craig
Date: Sun Apr 26 21:54:57 2020
New Revision: 23667

URL: http://scribus.net/websvn/listing.php?repname=Scribus&sc=1&rev=23667
Log:
Fix indentation

Modified:
    trunk/Scribus/scribus/colormgmt/sccolorspace.cpp

Modified: trunk/Scribus/scribus/colormgmt/sccolorspace.cpp
URL: http://scribus.net/websvn/diff.php?repname=Scribus&rev=23667&path=/trunk/Scribus/scribus/colormgmt/sccolorspace.cpp
==============================================================================
--- trunk/Scribus/scribus/colormgmt/sccolorspace.cpp	(original)
+++ trunk/Scribus/scribus/colormgmt/sccolorspace.cpp	Sun Apr 26 21:54:57 2020
@@ -74,8 +74,8 @@
 		m_data->flattenAlpha(dataIn, numElems);
 }
 
-ScColorTransform ScColorSpace::createTransform(const ScColorSpace& outputSpace, eRenderIntent renderIntent, 
-	                                 long transformFlags)
+ScColorTransform ScColorSpace::createTransform(const ScColorSpace& outputSpace, eRenderIntent renderIntent,
+											   long transformFlags)
 {
 	if (m_data && outputSpace.m_data)
 		return m_data->createTransform(*outputSpace.m_data, renderIntent, transformFlags);
@@ -83,16 +83,16 @@
 }
 
 ScColorTransform ScColorSpace::createTransform(const ScColorProfile& outputProfile, eColorFormat outputFormat,
-	                                 eRenderIntent renderIntent, long transformFlags)
+											   eRenderIntent renderIntent, long transformFlags)
 {
 	if (m_data)
 		return m_data->createTransform(outputProfile, outputFormat, renderIntent, transformFlags);
 	return ScColorTransform();
 }
 
-ScColorTransform ScColorSpace::createProofingTransform(const ScColorSpace& outputSpace, const ScColorProfile& proofing, 
-	                                         eRenderIntent renderIntent,  eRenderIntent proofingIntent, 
-											 long transformFlags)
+ScColorTransform ScColorSpace::createProofingTransform(const ScColorSpace& outputSpace, const ScColorProfile& proofing,
+													   eRenderIntent renderIntent,  eRenderIntent proofingIntent,
+													   long transformFlags)
 {
 	if (m_data && outputSpace.m_data)
 		return m_data->createProofingTransform(*outputSpace.m_data, proofing, renderIntent, proofingIntent, transformFlags);
@@ -100,24 +100,24 @@
 }
 
 ScColorTransform ScColorSpace::createProofingTransform(const ScColorProfile& outputProfile, eColorFormat outputFormat,
-											 const ScColorProfile& proofing, eRenderIntent renderIntent, 
-	                                         eRenderIntent proofingIntent, long transformFlags)
+													   const ScColorProfile& proofing, eRenderIntent renderIntent,
+													   eRenderIntent proofingIntent, long transformFlags)
 {
 	if (m_data)
 		return m_data->createProofingTransform(outputProfile, outputFormat, proofing, renderIntent, proofingIntent, transformFlags);
 	return ScColorTransform();
 }
 
-bool ScColorSpace::convert(ScColorSpace& data, eRenderIntent renderIntent, long transformFlags, 
-	             void* dataIn, void* dataOut, uint numElems, ScColorTransform* lastTrans)
+bool ScColorSpace::convert(ScColorSpace& data, eRenderIntent renderIntent, long transformFlags,
+						   void* dataIn, void* dataOut, uint numElems, ScColorTransform* lastTrans)
 {
 	if (m_data && data.m_data)
 		return m_data->convert(*data.m_data, renderIntent, transformFlags, dataIn, dataOut, numElems, lastTrans);
 	return false;
 }
 
-bool ScColorSpace::convert(ScColorSpace& data, eRenderIntent renderIntent, long transformFlags, 
-	             void* dataIn, QIODevice* device, uint numElems, ScColorTransform* lastTrans)
+bool ScColorSpace::convert(ScColorSpace& data, eRenderIntent renderIntent, long transformFlags,
+						   void* dataIn, QIODevice* device, uint numElems, ScColorTransform* lastTrans)
 {
 	if (m_data && data.m_data)
 		return m_data->convert(*data.m_data, renderIntent, transformFlags, dataIn, device, numElems, lastTrans);




More information about the scribus-commit mailing list