Author: jghali
Date: Sat Nov 23 11:52:53 2019
New Revision: 23370

URL: http://scribus.net/websvn/listing.php?repname=Scribus&sc=1&rev=23370
Log:
Fix a few PageItem property names

Modified:
    trunk/Scribus/scribus/pageitem.cpp
    trunk/Scribus/scribus/pageitem.h

Modified: trunk/Scribus/scribus/pageitem.cpp
URL: 
http://scribus.net/websvn/diff.php?repname=Scribus&rev=23370&path=/trunk/Scribus/scribus/pageitem.cpp
==============================================================================
--- trunk/Scribus/scribus/pageitem.cpp  (original)
+++ trunk/Scribus/scribus/pageitem.cpp  Sat Nov 23 11:52:53 2019
@@ -233,7 +233,7 @@
        ChangedMasterItem(other.ChangedMasterItem),
        OnMasterPage(other.OnMasterPage),
        isEmbedded(other.isEmbedded),
-       m_roundedCorderRadius(other.m_roundedCorderRadius),
+       m_roundedCornerRadius(other.m_roundedCornerRadius),
        oldXpos(other.oldXpos),
        oldYpos(other.oldYpos),
        oldWidth(other.oldWidth),
@@ -533,7 +533,7 @@
        m_imageRotation = 0;
        BBoxX = 0;
        BBoxH = 0;
-       m_roundedCorderRadius = 0;
+       m_roundedCornerRadius = 0;
        switch (m_itemType)
        {
                case Polygon:
@@ -1750,17 +1750,17 @@
 
 void PageItem::setCornerRadius(double newRadius)
 {
-       if (m_roundedCorderRadius==newRadius)
+       if (m_roundedCornerRadius == newRadius)
                return;
        if (UndoManager::undoEnabled())
        {
                SimpleState *state = new 
SimpleState(Um::RoundCorner,"",Um::IBorder);
                state->set("CORNER_RADIUS");
-               state->set("OLD_RADIUS", m_roundedCorderRadius);
+               state->set("OLD_RADIUS", m_roundedCornerRadius);
                state->set("NEW_RADIUS", newRadius);
                undoManager->action(this,state);
        }
-       m_roundedCorderRadius=newRadius;
+       m_roundedCornerRadius=newRadius;
        //emit cornerRadius(RadRect);
 }
 
@@ -6729,9 +6729,9 @@
 void PageItem::restoreCornerRadius(SimpleState *state, bool isUndo)
 {
        if (isUndo)
-               m_roundedCorderRadius=state->getDouble("OLD_RADIUS");
-       else
-               m_roundedCorderRadius=state->getDouble("NEW_RADIUS");
+               m_roundedCornerRadius = state->getDouble("OLD_RADIUS");
+       else
+               m_roundedCornerRadius = state->getDouble("NEW_RADIUS");
        Selection tmpSelection = *(doc()->m_Selection);
        doc()->m_Selection->clear();
        doc()->m_Selection->addItem(this);
@@ -8659,10 +8659,10 @@
 
 void PageItem::SetFrameRound()
 {
-       setCornerRadius(qMin(m_roundedCorderRadius, qMin(m_width, m_height)/2));
+       setCornerRadius(qMin(m_roundedCornerRadius, qMin(m_width, m_height)/2));
        PoLine.resize(0);
-       double rr = fabs(m_roundedCorderRadius);
-       if (m_roundedCorderRadius > 0.0)
+       double rr = fabs(m_roundedCornerRadius);
+       if (m_roundedCornerRadius > 0.0)
        {
                QPainterPath path;
                path.addRoundedRect(0, 0, m_width, m_height, rr, rr);

Modified: trunk/Scribus/scribus/pageitem.h
URL: 
http://scribus.net/websvn/diff.php?repname=Scribus&rev=23370&path=/trunk/Scribus/scribus/pageitem.h
==============================================================================
--- trunk/Scribus/scribus/pageitem.h    (original)
+++ trunk/Scribus/scribus/pageitem.h    Sat Nov 23 11:52:53 2019
@@ -105,35 +105,35 @@
        Q_PROPERTY(double lineShade READ lineShade WRITE setLineShade 
DESIGNABLE false)
        Q_PROPERTY(double fillTransparency READ fillTransparency WRITE 
setFillTransparency DESIGNABLE false)
        Q_PROPERTY(double lineTransparency READ lineTransparency WRITE 
setLineTransparency DESIGNABLE false)
-       Q_PROPERTY(bool m_Locked READ locked WRITE setLocked DESIGNABLE false)
-       Q_PROPERTY(bool m_SizeLocked READ sizeLocked WRITE setSizeLocked 
DESIGNABLE false)
+       Q_PROPERTY(bool locked READ locked WRITE setLocked DESIGNABLE false)
+       Q_PROPERTY(bool sizeLocked READ sizeLocked WRITE setSizeLocked 
DESIGNABLE false)
        //used for notes frames
-       Q_PROPERTY(bool m_SizeHLocked READ sizeHLocked WRITE setSizeHLocked 
DESIGNABLE false)
-       Q_PROPERTY(bool m_SizeVLocked READ sizeVLocked WRITE setSizeVLocked 
DESIGNABLE false)
-       Q_PROPERTY(bool m_ImageIsFlippedV READ imageFlippedV WRITE 
setImageFlippedV DESIGNABLE false)
-       Q_PROPERTY(bool m_ImageIsFlippedH READ imageFlippedH WRITE 
setImageFlippedH DESIGNABLE false)
+       Q_PROPERTY(bool sizeHLocked READ sizeHLocked WRITE setSizeHLocked 
DESIGNABLE false)
+       Q_PROPERTY(bool sizeVLocked READ sizeVLocked WRITE setSizeVLocked 
DESIGNABLE false)
+       Q_PROPERTY(bool imageFlippedV READ imageFlippedV WRITE setImageFlippedV 
DESIGNABLE false)
+       Q_PROPERTY(bool imageFlippedH READ imageFlippedH WRITE setImageFlippedH 
DESIGNABLE false)
        Q_PROPERTY(double lineWidth READ lineWidth WRITE setLineWidth 
DESIGNABLE false)
        Q_PROPERTY(QString customLineStyle READ customLineStyle WRITE 
setCustomLineStyle DESIGNABLE false)
        Q_PROPERTY(int startArrowIndex READ startArrowIndex WRITE 
setStartArrowIndex DESIGNABLE false)
        Q_PROPERTY(int endArrowIndex READ endArrowIndex WRITE setEndArrowIndex 
DESIGNABLE false)
 
-       Q_PROPERTY(bool m_PrintEnabled READ printEnabled WRITE setPrintEnabled 
DESIGNABLE false)
+       Q_PROPERTY(bool printEnabled READ printEnabled WRITE setPrintEnabled 
DESIGNABLE false)
        Q_PROPERTY(double xPos READ xPos WRITE setXPos DESIGNABLE false)
        Q_PROPERTY(double yPos READ yPos WRITE setYPos DESIGNABLE false)
        Q_PROPERTY(double width READ width WRITE setWidth DESIGNABLE false)
        Q_PROPERTY(double height READ height WRITE setHeight DESIGNABLE false)
-       Q_PROPERTY(double m_rotation READ rotation WRITE setRotation DESIGNABLE 
false)
-       Q_PROPERTY(double m_imageXScale READ imageXScale WRITE setImageXScale 
DESIGNABLE false)
-       Q_PROPERTY(double m_imageYScale READ imageYScale WRITE setImageYScale 
DESIGNABLE false)
+       Q_PROPERTY(double rotation READ rotation WRITE setRotation DESIGNABLE 
false)
+       Q_PROPERTY(double imageXScale READ imageXScale WRITE setImageXScale 
DESIGNABLE false)
+       Q_PROPERTY(double imageYScale READ imageYScale WRITE setImageYScale 
DESIGNABLE false)
        Q_PROPERTY(double imageXOffset READ imageXOffset WRITE setImageXOffset 
DESIGNABLE false)
        Q_PROPERTY(double imageYOffset READ imageYOffset WRITE setImageYOffset 
DESIGNABLE false)
-       Q_PROPERTY(double m_roundedCorderRadius READ cornerRadius WRITE 
setCornerRadius DESIGNABLE false)
+       Q_PROPERTY(double cornerRadius READ cornerRadius WRITE setCornerRadius 
DESIGNABLE false)
        Q_PROPERTY(double textToFrameDistLeft READ textToFrameDistLeft WRITE 
setTextToFrameDistLeft DESIGNABLE false)
        Q_PROPERTY(double textToFrameDistRight READ textToFrameDistRight WRITE 
setTextToFrameDistRight DESIGNABLE false)
        Q_PROPERTY(double textToFrameDistTop READ textToFrameDistTop WRITE 
setTextToFrameDistTop DESIGNABLE false)
        Q_PROPERTY(double textToFrameDistBottom READ textToFrameDistBottom 
WRITE setTextToFrameDistBottom DESIGNABLE false)
-       Q_PROPERTY(double ColGap READ columnGap WRITE setColumnGap DESIGNABLE 
false)
-       Q_PROPERTY(int Cols READ columns WRITE setColumns DESIGNABLE false)
+       Q_PROPERTY(double columnGap READ columnGap WRITE setColumnGap 
DESIGNABLE false)
+       Q_PROPERTY(int columns READ columns WRITE setColumns DESIGNABLE false)
        Q_ENUM(FirstLineOffsetPolicy)
        Q_PROPERTY(FirstLineOffsetPolicy firstLineOffset READ firstLineOffset 
WRITE setFirstLineOffset DESIGNABLE false)
        // FIXME: QMetaProperty can't translate these to/from enumerator names, 
probably because the
@@ -538,7 +538,7 @@
        double imageRotation() const { return m_imageRotation; }
        void setImageRotation(double newRotation);
        //Rounded Corners
-       double cornerRadius() const { return m_roundedCorderRadius; }
+       double cornerRadius() const { return m_roundedCornerRadius; }
        void setCornerRadius(double);
        // PDF bookmark
        bool isPDFBookmark() const { return isBookmark; }
@@ -1411,7 +1411,7 @@
        int inlineCharID;
        QString inlineExt;
        /** Radius of rounded corners */
-       double m_roundedCorderRadius;
+       double m_roundedCornerRadius;
 
        //Undo Data
        double oldXpos; ///< Stores the old X-position for undo action. Is used 
to detect move actions.


_______________________________________________
scribus-commit mailing list
[email protected]
http://lists.scribus.net/mailman/listinfo/scribus-commit

Reply via email to