summaryrefslogtreecommitdiff
path: root/vcl/qt5
ModeNameSize
-rw-r--r--Qt5Bitmap.cxx7841logplain
-rw-r--r--Qt5Bitmap.hxx2619logplain
-rw-r--r--Qt5Data.cxx8942logplain
-rw-r--r--Qt5Data.hxx1456logplain
-rw-r--r--Qt5Font.cxx1002logplain
-rw-r--r--Qt5FontFace.cxx3592logplain
-rw-r--r--Qt5FontFace.hxx1950logplain
-rw-r--r--Qt5Frame.cxx15813logplain
-rw-r--r--Qt5Frame.hxx5377logplain
-rw-r--r--Qt5Graphics.cxx3172logplain
-rw-r--r--Qt5Graphics.hxx10215logplain
-rw-r--r--Qt5Graphics_Controls.cxx2059logplain
-rw-r--r--Qt5Graphics_GDI.cxx19914logplain
-rw-r--r--Qt5Graphics_Text.cxx5092logplain
-rw-r--r--Qt5Instance.cxx8567logplain
-rw-r--r--Qt5Instance.hxx4074logplain
-rw-r--r--Qt5Instance_Print.cxx8066logplain
-rw-r--r--Qt5Object.cxx2122logplain
-rw-r--r--Qt5Object.hxx1841logplain
-rw-r--r--Qt5Painter.cxx1926logplain
-rw-r--r--Qt5Painter.hxx1927logplain
-rw-r--r--Qt5Printer.cxx1141logplain
-rw-r--r--Qt5Printer.hxx1265logplain
-rw-r--r--Qt5Timer.cxx1801logplain
-rw-r--r--Qt5Timer.hxx1365logplain
-rw-r--r--Qt5Tools.cxx1811logplain
-rw-r--r--Qt5Tools.hxx3130logplain
-rw-r--r--Qt5VirtualDevice.cxx2795logplain
-rw-r--r--Qt5VirtualDevice.hxx1838logplain
-rw-r--r--Qt5Widget.cxx10548logplain
-rw-r--r--Qt5Widget.hxx2144logplain
-rw-r--r--tst_exclude_posted_events.hxx2205logplain
-rw-r--r--tst_exclude_socket_notifiers.hxx2458logplain
moggi/fix-opengl-context-problems&id=22fa9289fdc6fd8d82d754adfef39fee3fd3c52f'>svx/source/customshapes/EnhancedCustomShapeFunctionParser.cxx62
-rw-r--r--svx/source/unodraw/shapepropertynotifier.cxx4
-rw-r--r--svx/source/unodraw/unoshape.cxx4
-rw-r--r--sw/source/core/unocore/unodraw.cxx2
-rw-r--r--sw/source/filter/ww8/wrtw8esh.cxx2
35 files changed, 165 insertions, 187 deletions
diff --git a/connectivity/source/commontools/RowFunctionParser.cxx b/connectivity/source/commontools/RowFunctionParser.cxx
index 94c2e4fc285b..b12ba73ffb07 100644
--- a/connectivity/source/commontools/RowFunctionParser.cxx
+++ b/connectivity/source/commontools/RowFunctionParser.cxx
@@ -77,12 +77,12 @@ public:
class BinaryFunctionExpression : public ExpressionNode
{
const ExpressionFunct meFunct;
- ExpressionNodeSharedPtr mpFirstArg;
- ExpressionNodeSharedPtr mpSecondArg;
+ std::shared_ptr<ExpressionNode> mpFirstArg;
+ std::shared_ptr<ExpressionNode> mpSecondArg;
public:
- BinaryFunctionExpression( const ExpressionFunct eFunct, const ExpressionNodeSharedPtr& rFirstArg, const ExpressionNodeSharedPtr& rSecondArg ) :
+ BinaryFunctionExpression( const ExpressionFunct eFunct, const std::shared_ptr<ExpressionNode>& rFirstArg, const std::shared_ptr<ExpressionNode>& rSecondArg ) :
meFunct( eFunct ),
mpFirstArg( rFirstArg ),
mpSecondArg( rSecondArg )
@@ -128,7 +128,7 @@ typedef const sal_Char* StringIteratorT;
struct ParserContext
{
- typedef ::std::stack< ExpressionNodeSharedPtr > OperandStack;
+ typedef ::std::stack< std::shared_ptr<ExpressionNode> > OperandStack;
// stores a stack of not-yet-evaluated operands. This is used
// by the operators (i.e. '+', '*', 'sin' etc.) to pop their
@@ -156,7 +156,7 @@ public:
void operator()( StringIteratorT rFirst,StringIteratorT rSecond) const
{
OUString sVal( rFirst, rSecond - rFirst, RTL_TEXTENCODING_UTF8 );
- mpContext->maOperandStack.push( ExpressionNodeSharedPtr( new ConstantValueExpression( new ORowSetValueDecorator( sVal ) ) ) );
+ mpContext->maOperandStack.push( std::shared_ptr<ExpressionNode>( new ConstantValueExpression( new ORowSetValueDecorator( sVal ) ) ) );
}
};
@@ -173,7 +173,7 @@ public:
}
void operator()( sal_Int32 n ) const
{
- mpContext->maOperandStack.push( ExpressionNodeSharedPtr( new ConstantValueExpression( new ORowSetValueDecorator( n ) ) ) );
+ mpContext->maOperandStack.push( std::shared_ptr<ExpressionNode>( new ConstantValueExpression( new ORowSetValueDecorator( n ) ) ) );
}
};
@@ -205,13 +205,13 @@ public:
throw ParseError( "Not enough arguments for binary operator" );
// retrieve arguments
- ExpressionNodeSharedPtr pSecondArg( rNodeStack.top() );
+ std::shared_ptr<ExpressionNode> pSecondArg( rNodeStack.top() );
rNodeStack.pop();
- ExpressionNodeSharedPtr pFirstArg( rNodeStack.top() );
+ std::shared_ptr<ExpressionNode> pFirstArg( rNodeStack.top() );
rNodeStack.pop();
// create combined ExpressionNode
- ExpressionNodeSharedPtr pNode = ExpressionNodeSharedPtr( new BinaryFunctionExpression( meFunct, pFirstArg, pSecondArg ) );
+ std::shared_ptr<ExpressionNode> pNode = std::shared_ptr<ExpressionNode>( new BinaryFunctionExpression( meFunct, pFirstArg, pSecondArg ) );
// check for constness
rNodeStack.push( pNode );
}
@@ -221,10 +221,10 @@ public:
*/
class UnaryFunctionExpression : public ExpressionNode
{
- ExpressionNodeSharedPtr mpArg;
+ std::shared_ptr<ExpressionNode> mpArg;
public:
- explicit UnaryFunctionExpression( const ExpressionNodeSharedPtr& rArg ) :
+ explicit UnaryFunctionExpression( const std::shared_ptr<ExpressionNode>& rArg ) :
mpArg( rArg )
{
}
@@ -256,10 +256,10 @@ public:
throw ParseError( "Not enough arguments for unary operator" );
// retrieve arguments
- ExpressionNodeSharedPtr pArg( rNodeStack.top() );
+ std::shared_ptr<ExpressionNode> pArg( rNodeStack.top() );
rNodeStack.pop();
- rNodeStack.push( ExpressionNodeSharedPtr( new UnaryFunctionExpression( pArg ) ) );