diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-03 18:10:36 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-03 18:10:36 +0000 |
commit | 154e6e6105157c321cbd578d238c525da419f868 (patch) | |
tree | e0f15e6ccbbf7db6bee0e0de695c41693a3a3a5e | |
parent | b150531c35bce2271f011d274782ecb8148d4c8f (diff) | |
download | kmymoney-154e6e6105157c321cbd578d238c525da419f868.tar.gz kmymoney-154e6e6105157c321cbd578d238c525da419f868.zip |
Fix instances of Orientation in quotes which were accidentally renamed to Qt::Orientation during TQt conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kmymoney@1244690 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
-rw-r--r-- | libkdchart/KDChartParams_io.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libkdchart/KDChartParams_io.cpp b/libkdchart/KDChartParams_io.cpp index 3a3d637..e24ce59 100644 --- a/libkdchart/KDChartParams_io.cpp +++ b/libkdchart/KDChartParams_io.cpp @@ -786,7 +786,7 @@ TQDomDocument KDChartParams::saveXML( bool withPI ) const // the Qt::Orientation element KDXML::createOrientationNode( doc, legendSettingsElement, - "Qt::Orientation", _legendOrientation ); + "Orientation", _legendOrientation ); // the ShowLines element KDXML::createBoolNode( doc, legendSettingsElement, @@ -1879,7 +1879,7 @@ bool KDChartParams::loadXML( const TQDomDocument& doc ) TQString string; if( KDXML::readStringNode( element, string ) ) _legendPosition = KDChartParams::stringToLegendPosition( string ); - } else if( tagName == "Qt::Orientation" ) { + } else if( tagName == "Orientation" ) { Qt::Orientation value=Qt::Vertical; if( KDXML::readOrientationNode( element, value ) ) _legendOrientation = value; |