r24423 by jghali - Code style fixes
scribus-commit
scribus-commit at lists.scribus.net
Sun Jan 24 17:50:52 UTC 2021
Author: jghali
Date: Sun Jan 24 17:50:52 2021
New Revision: 24423
URL: http://scribus.net/websvn/listing.php?repname=Scribus&sc=1&rev=24423
Log:
Code style fixes
Modified:
trunk/Scribus/scribus/pageitem.cpp
Modified: trunk/Scribus/scribus/pageitem.cpp
URL: http://scribus.net/websvn/diff.php?repname=Scribus&rev=24423&path=/trunk/Scribus/scribus/pageitem.cpp
==============================================================================
--- trunk/Scribus/scribus/pageitem.cpp (original)
+++ trunk/Scribus/scribus/pageitem.cpp Sun Jan 24 17:50:52 2021
@@ -8661,7 +8661,7 @@
QRectF PageItem::getBoundingRect() const
{
- double x,y,x2,y2;
+ double x, y, x2, y2;
getBoundingRect(&x, &y, &x2, &y2);
return QRectF(x, y, x2 - x, y2 - y);
}
@@ -8678,16 +8678,16 @@
QRectF PageItem::getOldBoundingRect() const
{
- double x,y,x2,y2;
+ double x, y, x2, y2;
getOldBoundingRect(&x, &y, &x2, &y2);
return QRectF(x, y, x2 - x, y2 - y);
}
QRectF PageItem::getVisualBoundingRect() const
{
- double x,y,x2,y2;
+ double x, y, x2, y2;
getVisualBoundingRect(&x, &y, &x2, &y2);
- return QRectF(x,y,x2-x,y2-y);
+ return QRectF(x, y, x2 - x, y2 - y);
}
void PageItem::getBoundingRect(double *x1, double *y1, double *x2, double *y2) const
More information about the scribus-commit
mailing list