diff options
20 files changed, 117 insertions, 145 deletions
diff --git a/avmedia/source/vlc/vlcmanager.cxx b/avmedia/source/vlc/vlcmanager.cxx index d2c14f795910..a37622304b4f 100644 --- a/avmedia/source/vlc/vlcmanager.cxx +++ b/avmedia/source/vlc/vlcmanager.cxx @@ -37,9 +37,8 @@ namespace }; } -Manager::Manager( const uno::Reference< lang::XMultiServiceFactory >& rxMgr ) +Manager::Manager() : mEventHandler() - , mxMgr( rxMgr ) { using namespace wrapper; static bool success = Instance::LoadSymbols() && EventManager::LoadSymbols() diff --git a/avmedia/source/vlc/vlcmanager.hxx b/avmedia/source/vlc/vlcmanager.hxx index d060aaaeeaf9..5b83cea984e0 100644 --- a/avmedia/source/vlc/vlcmanager.hxx +++ b/avmedia/source/vlc/vlcmanager.hxx @@ -34,7 +34,7 @@ class Manager : public ::cppu::WeakImplHelper< css::media::XManager, std::unique_ptr<wrapper::Instance> mInstance; wrapper::EventHandler mEventHandler; public: - explicit Manager( const css::uno::Reference< css::lang::XMultiServiceFactory >& rxMgr ); + explicit Manager(); virtual ~Manager() override; css::uno::Reference< css::media::XPlayer > SAL_CALL createPlayer( const rtl::OUString& aURL ) override; @@ -44,7 +44,6 @@ public: css::uno::Sequence< rtl::OUString > SAL_CALL getSupportedServiceNames() override; private: - css::uno::Reference< css::lang::XMultiServiceFactory > mxMgr; css::uno::Reference< css::media::XPlayer > mPlayer; rtl::OUString mURL; bool m_is_vlc_found; diff --git a/avmedia/source/vlc/vlcuno.cxx b/avmedia/source/vlc/vlcuno.cxx index 99ffd3522026..5c2ba39d345d 100644 --- a/avmedia/source/vlc/vlcuno.cxx +++ b/avmedia/source/vlc/vlcuno.cxx @@ -29,7 +29,7 @@ using namespace ::com::sun::star; #define IMPL_NAME "com.sun.star.comp.media.Manager_VLC" #define SERVICE_NAME "com.sun.star.comp.avmedia.Manager_VLC" -static uno::Reference< uno::XInterface > create_MediaPlayer( const uno::Reference< lang::XMultiServiceFactory >& rxFact ) +static uno::Reference< uno::XInterface > create_MediaPlayer( const uno::Reference< lang::XMultiServiceFactory >& /*rxFact*/ ) { SAL_INFO("avmedia", "create VLC Media player !"); @@ -38,7 +38,7 @@ static uno::Reference< uno::XInterface > create_MediaPlayer( const uno::Referenc if (!xContext.is() || !officecfg::Office::Common::Misc::ExperimentalMode::get(xContext)) return nullptr; - static uno::Reference< uno::XInterface > manager( *new ::avmedia::vlc::Manager( rxFact ) ); + static uno::Reference< uno::XInterface > manager( *new ::avmedia::vlc::Manager ); return manager; } diff --git a/canvas/source/opengl/ogl_canvasbitmap.cxx b/canvas/source/opengl/ogl_canvasbitmap.cxx index 08e76a5c1c1e..69d049f0c391 100644 --- a/canvas/source/opengl/ogl_canvasbitmap.cxx +++ b/canvas/source/opengl/ogl_canvasbitmap.cxx @@ -22,10 +22,8 @@ namespace oglcanvas { CanvasBitmap::CanvasBitmap( const geometry::IntegerSize2D& rSize, const SpriteCanvasRef& rDevice, - SpriteDeviceHelper& rDeviceHelper, - bool bHasAlpha ) : - mpDevice( rDevice ), - mbHasAlpha( bHasAlpha ) + SpriteDeviceHelper& rDeviceHelper ) : + mpDevice( rDevice ) { ENSURE_OR_THROW( mpDevice.is(), "CanvasBitmap::CanvasBitmap(): Invalid surface or device" ); @@ -34,8 +32,7 @@ namespace oglcanvas } CanvasBitmap::CanvasBitmap( const CanvasBitmap& rSrc ) : - mpDevice( rSrc.mpDevice ), - mbHasAlpha( rSrc.mbHasAlpha ) + mpDevice( rSrc.mpDevice ) { maCanvasHelper = rSrc.maCanvasHelper; } diff --git a/canvas/source/opengl/ogl_canvasbitmap.hxx b/canvas/source/opengl/ogl_canvasbitmap.hxx index 89482120c26b..3d5954e4c723 100644 --- a/canvas/source/opengl/ogl_canvasbitmap.hxx +++ b/canvas/source/opengl/ogl_canvasbitmap.hxx @@ -49,8 +49,7 @@ namespace oglcanvas */ CanvasBitmap( const css::geometry::IntegerSize2D& rSize, const SpriteCanvasRef& rDevice, - SpriteDeviceHelper& rDeviceHelper, - bool bHasAlpha ); + SpriteDeviceHelper& rDeviceHelper ); /** Create verbatim copy (including all recorded actions) */ @@ -68,7 +67,6 @@ namespace oglcanvas raw pointer (without refcounting) */ SpriteCanvasRef mpDevice; - bool mbHasAlpha; }; } diff --git a/canvas/source/opengl/ogl_spritedevicehelper.cxx b/canvas/source/opengl/ogl_spritedevicehelper.cxx index 46535fc9a409..3f4c8a7414b5 100644 --- a/canvas/source/opengl/ogl_spritedevicehelper.cxx +++ b/canvas/source/opengl/ogl_spritedevicehelper.cxx @@ -218,8 +218,7 @@ namespace oglcanvas return uno::Reference< rendering::XBitmap >( new CanvasBitmap( size, mpSpriteCanvas, - *this, - false ) ); + *this ) ); } uno::Reference< rendering::XVolatileBitmap > SpriteDeviceHelper::createVolatileBitmap( @@ -240,8 +239,7 @@ namespace oglcanvas return uno::Reference< rendering::XBitmap >( new CanvasBitmap( size, mpSpriteCanvas, - *this, - true ) ); + *this ) ); } uno::Reference< rendering::XVolatileBitmap > SpriteDeviceHelper::createVolatileAlphaBitmap( diff --git a/chart2/source/model/inc/BaseCoordinateSystem.hxx b/chart2/source/model/inc/BaseCoordinateSystem.hxx index 82df7be4599b..06955837a955 100644 --- a/chart2/source/model/inc/BaseCoordinateSystem.hxx +++ b/chart2/source/model/inc/BaseCoordinateSystem.hxx @@ -54,9 +54,7 @@ class BaseCoordinateSystem : public ::property::OPropertySet { public: - BaseCoordinateSystem( - const css::uno::Reference< css::uno::XComponentContext > & xContext, - sal_Int32 nDimensionCount ); + BaseCoordinateSystem( sal_Int32 nDimensionCount ); explicit BaseCoordinateSystem( const BaseCoordinateSystem & rSource ); virtual ~BaseCoordinateSystem() override; @@ -115,8 +113,6 @@ protected: void fireModifyEvent(); protected: - css::uno::Reference< css::uno::XComponentContext > m_xContext; - css::uno::Reference< css::util::XModifyListener > m_xModifyEventForwarder; private: diff --git a/chart2/source/model/inc/CartesianCoordinateSystem.hxx b/chart2/source/model/inc/CartesianCoordinateSystem.hxx index 0b3c5c0a0172..7b2847cd8b84 100644 --- a/chart2/source/model/inc/CartesianCoordinateSystem.hxx +++ b/chart2/source/model/inc/CartesianCoordinateSystem.hxx @@ -27,9 +27,7 @@ namespace chart class CartesianCoordinateSystem : public BaseCoordinateSystem { public: - explicit CartesianCoordinateSystem( - const css::uno::Reference< css::uno::XComponentContext > & xContext, - sal_Int32 nDimensionCount ); + explicit CartesianCoordinateSystem( sal_Int32 nDimensionCount ); explicit CartesianCoordinateSystem( const CartesianCoordinateSystem & rSource ); virtual ~CartesianCoordinateSystem() override; @@ -49,8 +47,7 @@ public: class CartesianCoordinateSystem2d : public CartesianCoordinateSystem { public: - explicit CartesianCoordinateSystem2d( - const css::uno::Reference< css::uno::XComponentContext > & xContext ); + explicit CartesianCoordinateSystem2d(); virtual ~CartesianCoordinateSystem2d() override; // ____ XServiceInfo ____ @@ -62,9 +59,7 @@ public: class CartesianCoordinateSystem3d : public CartesianCoordinateSystem { public: - explicit CartesianCoordinateSystem3d( - const css::uno::Reference< - css::uno::XComponentContext > & xContext ); + explicit CartesianCoordinateSystem3d(); virtual ~CartesianCoordinateSystem3d() override; // ____ XServiceInfo ____ diff --git a/chart2/source/model/inc/PolarCoordinateSystem.hxx b/chart2/source/model/inc/PolarCoordinateSystem.hxx index 2c0017caa8b7..4572201f5ce9 100644 --- a/chart2/source/model/inc/PolarCoordinateSystem.hxx +++ b/chart2/source/model/inc/PolarCoordinateSystem.hxx @@ -27,9 +27,7 @@ namespace chart class PolarCoordinateSystem : public BaseCoordinateSystem { public: - explicit PolarCoordinateSystem( - const css::uno::Reference< css::uno::XComponentContext > & xContext, - sal_Int32 nDimensionCount ); + explicit PolarCoordinateSystem( sal_Int32 nDimensionCount ); explicit PolarCoordinateSystem( const PolarCoordinateSystem & rSource ); virtual ~PolarCoordinateSystem() override; @@ -49,8 +47,7 @@ public: class PolarCoordinateSystem2d : public PolarCoordinateSystem { public: - explicit PolarCoordinateSystem2d( - const css::uno::Reference< css::uno::XComponentContext > & xContext ); + explicit PolarCoordinateSystem2d(); virtual ~PolarCoordinateSystem2d() override; // ____ XServiceInfo ____ @@ -62,8 +59,7 @@ public: class PolarCoordinateSystem3d : public PolarCoordinateSystem { public: - explicit PolarCoordinateSystem3d( - const css::uno::Reference< css::uno::XComponentContext > & xContext ); + explicit PolarCoordinateSystem3d(); virtual ~PolarCoordinateSystem3d() override; // ____ XServiceInfo ____ diff --git a/chart2/source/model/main/BaseCoordinateSystem.cxx b/chart2/source/model/main/BaseCoordinateSystem.cxx index ec8d16100b46..0079926c4f04 100644 --- a/chart2/source/model/main/BaseCoordinateSystem.cxx +++ b/chart2/source/model/main/BaseCoordinateSystem.cxx @@ -114,10 +114,8 @@ namespace chart { BaseCoordinateSystem::BaseCoordinateSystem( - const Reference< uno::XComponentContext > & xContext, sal_Int32 nDimensionCount /* = 2 */ ) : ::property::OPropertySet( m_aMutex ), - m_xContext( xContext ), m_xModifyEventForwarder( ModifyListenerHelper::createModifyEventForwarder()), m_nDimensionCount( nDimensionCount ) { @@ -158,7 +156,6 @@ BaseCoordinateSystem::BaseCoordinateSystem( impl::BaseCoordinateSystem_Base(), MutexContainer(), ::property::OPropertySet( rSource, m_aMutex ), - m_xContext( rSource.m_xContext ), m_xModifyEventForwarder( ModifyListenerHelper::createModifyEventForwarder()), m_nDimensionCount( rSource.m_nDimensionCount ), m_aOrigin( rSource.m_aOrigin ) diff --git a/chart2/source/model/main/CartesianCoordinateSystem.cxx b/chart2/source/model/main/CartesianCoordinateSystem.cxx index e2f2f5f2fda0..39d86ff53cb1 100644 --- a/chart2/source/model/main/CartesianCoordinateSystem.cxx +++ b/chart2/source/model/main/CartesianCoordinateSystem.cxx @@ -39,9 +39,8 @@ namespace chart // explicit CartesianCoordinateSystem::CartesianCoordinateSystem( - const uno::Reference< uno::XComponentContext > & xContext, sal_Int32 nDimensionCount /* = 2 */ ) : - BaseCoordinateSystem( xContext, nDimensionCount ) + BaseCoordinateSystem( nDimensionCount ) {} CartesianCoordinateSystem::CartesianCoordinateSystem( @@ -87,9 +86,8 @@ css::uno::Sequence< OUString > SAL_CALL CartesianCoordinateSystem::getSupportedS // ==== CartesianCoordinateSystem2d ==== -CartesianCoordinateSystem2d::CartesianCoordinateSystem2d( - const uno::Reference< uno::XComponentContext > & xContext ) : - CartesianCoordinateSystem( xContext, 2 ) +CartesianCoordinateSystem2d::CartesianCoordinateSystem2d() : + CartesianCoordinateSystem( 2 ) {} CartesianCoordinateSystem2d::~CartesianCoordinateSystem2d() @@ -116,9 +114,8 @@ css::uno::Sequence< OUString > SAL_CALL CartesianCoordinateSystem2d::getSupporte // ==== CartesianCoordinateSystem3d ==== -CartesianCoordinateSystem3d::CartesianCoordinateSystem3d( - const uno::Reference< uno::XComponentContext > & xContext ) : - CartesianCoordinateSystem( xContext, 3 ) +CartesianCoordinateSystem3d::CartesianCoordinateSystem3d() : + CartesianCoordinateSystem( 3 ) {} CartesianCoordinateSystem3d::~CartesianCoordinateSystem3d() @@ -146,17 +143,17 @@ css::uno::Sequence< OUString > SAL_CALL CartesianCoordinateSystem3d::getSupporte } // namespace chart extern "C" SAL_DLLPUBLIC_EXPORT css::uno::XInterface * -com_sun_star_comp_chart2_CartesianCoordinateSystem2d_get_implementation(css::uno::XComponentContext *context, +com_sun_star_comp_chart2_CartesianCoordinateSystem2d_get_implementation(css::uno::XComponentContext *, css::uno::Sequence<css::uno::Any> const &) { - return cppu::acquire(new ::chart::CartesianCoordinateSystem2d(context)); + return cppu::acquire(new ::chart::CartesianCoordinateSystem2d); } extern "C" SAL_DLLPUBLIC_EXPORT css::uno::XInterface * -com_sun_star_comp_chart2_CartesianCoordinateSystem3d_get_implementation(css::uno::XComponentContext *context, +com_sun_star_comp_chart2_CartesianCoordinateSystem3d_get_implementation(css::uno::XComponentContext *, css::uno::Sequence<css::uno::Any> const &) { - return cppu::acquire(new ::chart::CartesianCoordinateSystem3d(context)); + return cppu::acquire(new ::chart::CartesianCoordinateSystem3d); } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/chart2/source/model/main/PolarCoordinateSystem.cxx b/chart2/source/model/main/PolarCoordinateSystem.cxx index a47f5a2add6c..49bede5f2b1b 100644 --- a/chart2/source/model/main/PolarCoordinateSystem.cxx +++ b/chart2/source/model/main/PolarCoordinateSystem.cxx @@ -38,10 +38,8 @@ namespace chart { // explicit -PolarCoordinateSystem::PolarCoordinateSystem( - const uno::Reference< uno::XComponentContext > & xContext, - sal_Int32 nDimensionCount /* = 2 */ ) : - BaseCoordinateSystem( xContext, nDimensionCount ) +PolarCoordinateSystem::PolarCoordinateSystem( sal_Int32 nDimensionCount /* = 2 */ ) : + BaseCoordinateSystem( nDimensionCount ) {} PolarCoordinateSystem::PolarCoordinateSystem( @@ -87,9 +85,8 @@ css::uno::Sequence< OUString > SAL_CALL PolarCoordinateSystem::getSupportedServi // ==== PolarCoordinateSystem2d ==== -PolarCoordinateSystem2d::PolarCoordinateSystem2d( - const uno::Reference< uno::XComponentContext > & xContext ) : - PolarCoordinateSystem( xContext, 2 ) +PolarCoordinateSystem2d::PolarCoordinateSystem2d() : + PolarCoordinateSystem( 2 ) {} PolarCoordinateSystem2d::~PolarCoordinateSystem2d() @@ -115,9 +112,8 @@ css::uno::Sequence< OUString > SAL_CALL PolarCoordinateSystem2d::getSupportedSer // ==== PolarCoordinateSystem3d ==== -PolarCoordinateSystem3d::PolarCoordinateSystem3d( - const uno::Reference< uno::XComponentContext > & xContext ) : - PolarCoordinateSystem( xContext, 3 ) +PolarCoordinateSystem3d::PolarCoordinateSystem3d() : + PolarCoordinateSystem( 3 ) {} PolarCoordinateSystem3d::~PolarCoordinateSystem3d() @@ -144,17 +140,17 @@ css::uno::Sequence< OUString > SAL_CALL PolarCoordinateSystem3d::getSupportedSer } // namespace chart extern "C" SAL_DLLPUBLIC_EXPORT css::uno::XInterface * -com_sun_star_comp_chart2_PolarCoordinateSystem2d_get_implementation(css::uno::XComponentContext *context, +com_sun_star_comp_chart2_PolarCoordinateSystem2d_get_implementation(css::uno::XComponentContext *, css::uno::Sequence<css::uno::Any> const &) { - return cppu::acquire(new ::chart::PolarCoordinateSystem2d(context)); + return cppu::acquire(new ::chart::PolarCoordinateSystem2d); } extern "C" SAL_DLLPUBLIC_EXPORT css::uno::XInterface * -com_sun_star_comp_chart2_PolarCoordinateSystem3d_get_implementation(css::uno::XComponentContext *context, +com_sun_star_comp_chart2_PolarCoordinateSystem3d_get_implementation(css::uno::XComponentContext *, css::uno::Sequence<css::uno::Any> const &) { - return cppu::acquire(new ::chart::PolarCoordinateSystem3d(context)); + return cppu::acquire(new ::chart::PolarCoordinateSystem3d); } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/chart2/source/model/template/BubbleChartType.cxx b/chart2/source/model/template/BubbleChartType.cxx index 49a43c3134f9..505e4bf60414 100644 --- a/chart2/source/model/template/BubbleChartType.cxx +++ b/chart2/source/model/template/BubbleChartType.cxx @@ -118,7 +118,7 @@ Reference< chart2::XCoordinateSystem > SAL_CALL BubbleChartType::createCoordinateSystem( ::sal_Int32 DimensionCount ) { Reference< chart2::XCoordinateSystem > xResult( - new CartesianCoordinateSystem( GetComponentContext(), DimensionCount )); + new CartesianCoordinateSystem( DimensionCount )); for( sal_Int32 i=0; i<DimensionCount; ++i ) { diff --git a/chart2/source/model/template/ChartType.cxx b/chart2/source/model/template/ChartType.cxx index d7eb954901bc..1e8e10ecd2d3 100644 --- a/chart2/source/model/template/ChartType.cxx +++ b/chart2/source/model/template/ChartType.cxx @@ -72,7 +72,7 @@ Reference< chart2::XCoordinateSystem > SAL_CALL ChartType::createCoordinateSystem( ::sal_Int32 DimensionCount ) { Reference< chart2::XCoordinateSystem > xResult( - new CartesianCoordinateSystem( GetComponentContext(), DimensionCount )); + new CartesianCoordinateSystem( DimensionCount )); for( sal_Int32 i=0; i<DimensionCount; ++i ) { diff --git a/chart2/source/model/template/NetChartType.cxx b/chart2/source/model/template/NetChartType.cxx index b124d9cbda93..78e14faad28d 100644 --- a/chart2/source/model/template/NetChartType.cxx +++ b/chart2/source/model/template/NetChartType.cxx @@ -60,7 +60,7 @@ Reference< XCoordinateSystem > SAL_CALL static_cast< ::cppu::OWeakObject* >( this ), 0 ); Reference< XCoordinateSystem > xResult( - new PolarCoordinateSystem( GetComponentContext(), DimensionCount )); + new PolarCoordinateSystem( DimensionCount )); Reference< XAxis > xAxis( xResult->getAxisByDimension( 0, MAIN_AXIS_INDEX ) ); if( xAxis.is() ) diff --git a/chart2/source/model/template/PieChartType.cxx b/chart2/source/model/template/PieChartType.cxx index 689ef9b491a2..96a6da5c64a0 100644 --- a/chart2/source/model/template/PieChartType.cxx +++ b/chart2/source/model/template/PieChartType.cxx @@ -151,7 +151,7 @@ Reference< chart2::XCoordinateSystem > SAL_CALL PieChartType::createCoordinateSystem( ::sal_Int32 DimensionCount ) { Reference< chart2::XCoordinateSystem > xResult( - new PolarCoordinateSystem( GetComponentContext(), DimensionCount )); + new PolarCoordinateSystem( DimensionCount )); for( sal_Int32 i=0; i<DimensionCount; ++i ) { diff --git a/chart2/source/model/template/ScatterChartType.cxx b/chart2/source/model/template/ScatterChartType.cxx index 3e5a1fb0c633..1663e419a2b7 100644 --- a/chart2/source/model/template/ScatterChartType.cxx +++ b/chart2/source/model/template/ScatterChartType.cxx @@ -173,7 +173,7 @@ Reference< chart2::XCoordinateSystem > SAL_CALL ScatterChartType::createCoordinateSystem( ::sal_Int32 DimensionCount ) { Reference< chart2::XCoordinateSystem > xResult( - new CartesianCoordinateSystem( GetComponentContext(), DimensionCount )); + new CartesianCoordinateSystem( DimensionCount )); for( sal_Int32 i=0; i<DimensionCount; ++i ) { diff --git a/compilerplugins/clang/unusedfields.readonly.results b/compilerplugins/clang/unusedfields.readonly.results index c3d55dca208a..50584b0a35ca 100644 --- a/compilerplugins/clang/unusedfields.readonly.results +++ b/compilerplugins/clang/unusedfields.readonly.results @@ -1,3 +1,9 @@ +avmedia/source/vlc/wrapper/Types.hxx:35 + libvlc_event_t type int +avmedia/source/vlc/wrapper/Types.hxx:49 + libvlc_track_description_t i_id int +avmedia/source/vlc/wrapper/Types.hxx:51 + libvlc_track_description_t p_next struct libvlc_track_description_t * basegfx/source/polygon/b2dtrapezoid.cxx:201 basegfx::trapezoidhelper::PointBlockAllocator maFirstStackBlock class basegfx::B2DPoint [32] basic/source/inc/expr.hxx:93 @@ -48,10 +54,6 @@ bridges/source/jni_uno/jni_java2uno.cxx:151 jni_uno::largest a uno_Any chart2/source/model/main/DataPoint.hxx:107 chart::DataPoint m_bNoParentPropAllowed _Bool -chart2/source/view/inc/GL3DRenderer.hxx:54 - chart::opengl3D::MaterialParameters pad float -chart2/source/view/inc/GL3DRenderer.hxx:55 - chart::opengl3D::MaterialParameters pad1 float connectivity/source/drivers/evoab2/EApi.h:125 (anonymous) po char * connectivity/source/drivers/evoab2/EApi.h:127 @@ -285,7 +287,7 @@ include/test/sheet/xnamedranges.hxx:38 include/test/sheet/xspreadsheets2.hxx:46 apitest::XSpreadsheets2 xDocument css::uno::Reference<css::sheet::XSpreadsheetDocument> include/unoidl/unoidl.hxx:443 - unoidl::ConstantValue union unoidl::ConstantValue::(anonymous at /home/noel/libo/include/unoidl/unoidl.hxx:443:5) + unoidl::ConstantValue union unoidl::ConstantValue::(anonymous at /home/noel/libo3/include/unoidl/unoidl.hxx:443:5) include/unoidl/unoidl.hxx:444 unoidl::ConstantValue::(anonymous) booleanValue _Bool include/unoidl/unoidl.hxx:445 @@ -318,7 +320,7 @@ include/vcl/opengl/OpenGLContext.hxx:57 OpenGLCapabilitySwitch mbLimitedShaderRegisters _Bool include/xmloff/nmspmap.hxx:70 SvXMLNamespaceMap sEmpty const class rtl::OUString -libreofficekit/qa/gtktiledviewer/gtv-lok-dialog.cxx:46 +libreofficekit/qa/gtktiledviewer/gtv-lok-dialog.cxx:51 GtvLokDialogPrivate m_nChildKeyModifier guint32 libreofficekit/source/gtk/lokdocview.cxx:84 LOKDocViewPrivateImpl m_bIsLoading gboolean @@ -367,7 +369,7 @@ sal/rtl/uuid.cxx:65 sc/inc/compiler.hxx:126 ScRawToken::(anonymous union)::(anonymous) eItem class ScTableRefToken::Item sc/inc/compiler.hxx:127 - ScRawToken::(anonymous) table struct (anonymous struct at /home/noel/libo/sc/inc/compiler.hxx:124:9) + ScRawToken::(anonymous) table struct (anonymous struct at /home/noel/libo3/sc/inc/compiler.hxx:124:9) sc/inc/compiler.hxx:132 ScRawToken::(anonymous) pMat class ScMatrix * sc/inc/formulagroup.hxx:42 @@ -404,8 +406,6 @@ sc/source/ui/vba/vbaformatconditions.hxx:46 ScVbaFormatConditions mxRangeParent css::uno::Reference<ov::excel::XRange> sc/source/ui/vba/vbaformatconditions.hxx:47 ScVbaFormatConditions mxParentRangePropertySet css::uno::Reference<css::beans::XPropertySet> -sc/source/ui/vba/vbatitle.hxx:43 - TitleImpl m_Palette class ScVbaPalette sd/inc/sdmod.hxx:117 SdModule gImplImpressPropertySetInfoCache SdExtPropertySetInfoCache sd/inc/sdmod.hxx:118 @@ -564,8 +564,6 @@ unoidl/source/unoidlprovider.cxx:456 unoidl::detail::MapEntry data struct unoidl::detail::(anonymous namespace)::Memory32 unotools/source/config/saveopt.cxx:82 SvtSaveOptions_Impl bROUserAutoSave _Bool -vcl/inc/PhysicalFontCollection.hxx:71 - PhysicalFontCollection mbMapNames _Bool vcl/inc/printerinfomanager.hxx:72 psp::PrinterInfoManager::SystemPrintQueue m_aComment class rtl::OUString vcl/inc/salwtype.hxx:153 @@ -578,17 +576,17 @@ vcl/inc/salwtype.hxx:202 SalSurroundingTextSelectionChangeEvent mnEnd sal_uLong vcl/inc/salwtype.hxx:208 SalQueryCharPositionEvent mnCharPos sal_uLong -vcl/inc/svdata.hxx:267 +vcl/inc/svdata.hxx:268 ImplSVNWFData mnStatusBarLowerRightOffset int -vcl/inc/svdata.hxx:273 +vcl/inc/svdata.hxx:274 ImplSVNWFData mbMenuBarDockingAreaCommonBG _Bool -vcl/inc/svdata.hxx:283 - ImplSVNWFData mbCenteredTabs _Bool vcl/inc/svdata.hxx:284 + ImplSVNWFData mbCenteredTabs _Bool +vcl/inc/svdata.hxx:285 ImplSVNWFData mbNoActiveTabTextRaise _Bool -vcl/inc/svdata.hxx:286 +vcl/inc/svdata.hxx:287 ImplSVNWFData mbProgressNeedsErase _Bool -vcl/inc/svdata.hxx:295 +vcl/inc/svdata.hxx:296 ImplSVNWFData mbRolloverMenubar _Bool vcl/inc/unx/i18n_status.hxx:56 vcl::I18NStatus m_aCurrentIM class rtl::OUString @@ -610,39 +608,39 @@ vcl/source/fontsubset/sft.cxx:1056 vcl::_subHeader2 entryCount sal_uInt16 vcl/source/fontsubset/sft.cxx:1057 vcl::_subHeader2 idDelta sal_uInt16 -vcl/source/gdi/dibtools.cxx:48 - (anonymous namespace)::CIEXYZ aXyzX FXPT2DOT30 vcl/source/gdi/dibtools.cxx:49 - (anonymous namespace)::CIEXYZ aXyzY FXPT2DOT30 + (anonymous namespace)::CIEXYZ aXyzX FXPT2DOT30 vcl/source/gdi/dibtools.cxx:50 + (anonymous namespace)::CIEXYZ aXyzY FXPT2DOT30 +vcl/source/gdi/dibtools.cxx:51 (anonymous namespace)::CIEXYZ aXyzZ FXPT2DOT30 -vcl/source/gdi/dibtools.cxx:61 - (anonymous namespace)::CIEXYZTriple aXyzRed struct (anonymous namespace)::CIEXYZ vcl/source/gdi/dibtools.cxx:62 - (anonymous namespace)::CIEXYZTriple aXyzGreen struct (anonymous namespace)::CIEXYZ + (anonymous namespace)::CIEXYZTriple aXyzRed struct (anonymous namespace)::CIEXYZ vcl/source/gdi/dibtools.cxx:63 + (anonymous namespace)::CIEXYZTriple aXyzGreen struct (anonymous namespace)::CIEXYZ +vcl/source/gdi/dibtools.cxx:64 (anonymous namespace)::CIEXYZTriple aXyzBlue struct (anonymous namespace)::CIEXYZ -vcl/source/gdi/dibtools.cxx:103 - (anonymous namespace)::DIBV5Header nV5RedMask sal_uInt32 vcl/source/gdi/dibtools.cxx:104 - (anonymous namespace)::DIBV5Header nV5GreenMask sal_uInt32 + (anonymous namespace)::DIBV5Header nV5RedMask sal_uInt32 vcl/source/gdi/dibtools.cxx:105 - (anonymous namespace)::DIBV5Header nV5BlueMask sal_uInt32 + (anonymous namespace)::DIBV5Header nV5GreenMask sal_uInt32 vcl/source/gdi/dibtools.cxx:106 + (anonymous namespace)::DIBV5Header nV5BlueMask sal_uInt32 +vcl/source/gdi/dibtools.cxx:107 (anonymous namespace)::DIBV5Header nV5AlphaMask sal_uInt32 -vcl/source/gdi/dibtools.cxx:108 - (anonymous namespace)::DIBV5Header aV5Endpoints struct (anonymous namespace)::CIEXYZTriple vcl/source/gdi/dibtools.cxx:109 - (anonymous namespace)::DIBV5Header nV5GammaRed sal_uInt32 + (anonymous namespace)::DIBV5Header aV5Endpoints struct (anonymous namespace)::CIEXYZTriple vcl/source/gdi/dibtools.cxx:110 - (anonymous namespace)::DIBV5Header nV5GammaGreen sal_uInt32 + (anonymous namespace)::DIBV5Header nV5GammaRed sal_uInt32 vcl/source/gdi/dibtools.cxx:111 + (anonymous namespace)::DIBV5Header nV5GammaGreen sal_uInt32 +vcl/source/gdi/dibtools.cxx:112 (anonymous namespace)::DIBV5Header nV5GammaBlue sal_uInt32 -vcl/source/gdi/dibtools.cxx:113 - (anonymous namespace)::DIBV5Header nV5ProfileData sal_uInt32 vcl/source/gdi/dibtools.cxx:114 - (anonymous namespace)::DIBV5Header nV5ProfileSize sal_uInt32 + (anonymous namespace)::DIBV5Header nV5ProfileData sal_uInt32 vcl/source/gdi/dibtools.cxx:115 + (anonymous namespace)::DIBV5Header nV5ProfileSize sal_uInt32 +vcl/source/gdi/dibtools.cxx:116 (anonymous namespace)::DIBV5Header nV5Reserved sal_uInt32 vcl/source/window/menuitemlist.hxx:54 MenuItemData aAccessibleName class rtl::OUString diff --git a/compilerplugins/clang/unusedfields.untouched.results b/compilerplugins/clang/unusedfields.untouched.results index 308cffd7a734..e3fb40d10ac1 100644 --- a/compilerplugins/clang/unusedfields.untouched.results +++ b/compilerplugins/clang/unusedfields.untouched.results @@ -1,15 +1,37 @@ +avmedia/source/vlc/vlcmanager.hxx:47 + avmedia::vlc::Manager mxMgr css::uno::Reference<css::lang::XMultiServiceFactory> +avmedia/source/vlc/wrapper/Types.hxx:36 + libvlc_event_t p_obj void * +avmedia/source/vlc/wrapper/Types.hxx:41 + libvlc_event_t::(anonymous union)::(anonymous) dummy1 const char * +avmedia/source/vlc/wrapper/Types.hxx:42 + libvlc_event_t::(anonymous union)::(anonymous) dummy2 const char * +avmedia/source/vlc/wrapper/Types.hxx:43 + libvlc_event_t::(anonymous) padding struct (anonymous struct at /home/noel/libo3/avmedia/source/vlc/wrapper/Types.hxx:40:7) +avmedia/source/vlc/wrapper/Types.hxx:44 + libvlc_event_t u union (anonymous union at /home/noel/libo3/avmedia/source/vlc/wrapper/Types.hxx:38:5) +avmedia/source/vlc/wrapper/Types.hxx:50 + libvlc_track_description_t psz_name char * basctl/source/inc/dlged.hxx:122 basctl::DlgEditor pObjFac std::unique_ptr<DlgEdFactory, o3tl::default_delete<DlgEdFactory> > basic/qa/cppunit/basictest.hxx:27 MacroSnippet maDll class BasicDLL basic/source/runtime/dllmgr.hxx:48 SbiDllMgr impl_ std::unique_ptr<Impl> +canvas/source/opengl/ogl_canvasbitmap.hxx:71 + oglcanvas::CanvasBitmap mbHasAlpha _Bool canvas/source/vcl/canvasbitmap.hxx:117 vclcanvas::CanvasBitmap mxDevice css::uno::Reference<css::rendering::XGraphicDevice> canvas/source/vcl/impltools.hxx:117 vclcanvas::tools::LocalGuard aSolarGuard class SolarMutexGuard chart2/source/controller/inc/RangeSelectionListener.hxx:62 chart::RangeSelectionListener m_aControllerLockGuard class chart::ControllerLockGuardUNO +chart2/source/model/inc/BaseCoordinateSystem.hxx:118 + chart::BaseCoordinateSystem m_xContext css::uno::Reference<css::uno::XComponentContext> +chart2/source/view/inc/GL3DRenderer.hxx:54 + chart::opengl3D::MaterialParameters pad float +chart2/source/view/inc/GL3DRenderer.hxx:55 + chart::opengl3D::MaterialParameters pad1 float chart2/source/view/inc/GL3DRenderer.hxx:64 chart::opengl3D::LightSource pad1 float chart2/source/view/inc/GL3DRenderer.hxx:65 @@ -22,6 +44,8 @@ connectivity/source/drivers/evoab2/EApi.h:122 (anonymous) address_format char * connectivity/source/drivers/evoab2/EApi.h:126 (anonymous) ext char * +connectivity/source/drivers/evoab2/NStatement.hxx:58 + connectivity::evoab::FieldSort bAscending _Bool connectivity/source/drivers/mork/MDatabaseMetaData.hxx:29 connectivity::mork::ODatabaseMetaData m_pMetaDataHelper std::unique_ptr<MDatabaseMetaDataHelper> cppu/source/threadpool/threadpool.cxx:355 @@ -30,7 +54,7 @@ cppu/source/typelib/typelib.cxx:61 AlignSize_Impl nInt16 sal_Int16 dbaccess/source/sdbtools/inc/connectiondependent.hxx:116 sdbtools::ConnectionDependentComponent::EntryGuard m_aMutexGuard ::osl::MutexGuard -emfio/source/emfuno/xemfparser.cxx:59 +emfio/source/emfuno/xemfparser.cxx:60 emfio::emfreader::XEmfParser context_ uno::Reference<uno::XComponentContext> extensions/source/scanner/scanner.hxx:44 ScannerManager maProtector osl::Mutex @@ -44,6 +68,8 @@ include/LibreOfficeKit/LibreOfficeKitGtk.h:38 _LOKDocViewClass parent_class GtkDrawingAreaClass include/oox/vml/vmlshapecontext.hxx:116 oox::vml::ShapeTypeContext m_pShapeType std::shared_ptr<ShapeType> +include/registry/registry.hxx:35 + Registry_Api acquire void (*)(RegHandle) include/sfx2/msg.hxx:117 SfxType0 createSfxPoolItemFunc std::function<SfxPoolItem *(void)> include/sfx2/msg.hxx:119 @@ -74,7 +100,7 @@ include/vcl/uitest/uiobject.hxx:241 TabPageUIObject mxTabPage VclPtr<class TabPage> include/xmloff/formlayerexport.hxx:173 xmloff::OOfficeFormsExport m_pImpl std::unique_ptr<OFormsRootExport> -libreofficekit/qa/gtktiledviewer/gtv-application-window.cxx:34 +libreofficekit/qa/gtktiledviewer/gtv-application-window.cxx:35 GtvApplicationWindowPrivate lokDialog GtkWidget * libreofficekit/qa/gtktiledviewer/gtv-application-window.hxx:50 GtvApplicationWindow parent_instance GtkApplicationWindow @@ -130,6 +156,10 @@ sc/inc/interpretercontext.hxx:23 ScInterpreterContext mrDoc const class ScDocument & sc/qa/unit/ucalc_column.cxx:103 aInputs aName const char * +sc/source/core/data/document.cxx:1269 + (anonymous namespace)::BroadcastRecalcOnRefMoveHandler aSwitch sc::AutoCalcSwitch +sc/source/core/data/document.cxx:1270 + (anonymous namespace)::BroadcastRecalcOnRefMoveHandler aBulk class ScBulkBroadcast sc/source/core/data/formulacell.cxx:1741 (anonymous namespace)::StackCleaner pInt std::unique_ptr<ScInterpreter> sc/source/filter/inc/sheetdatacontext.hxx:61 @@ -138,6 +168,8 @@ sc/source/ui/inc/docsh.hxx:439 ScDocShellModificator mpProtector std::unique_ptr<ScRefreshTimerProtector> sd/source/ui/remotecontrol/ZeroconfService.hxx:36 sd::ZeroconfService port uint +sd/source/ui/slidesorter/view/SlsLayouter.cxx:61 + sd::slidesorter::view::Layouter::Implementation mpTheme std::shared_ptr<view::Theme> sd/source/ui/table/TableDesignPane.hxx:113 sd::TableDesignPane aImpl class sd::TableDesignWidget sd/source/ui/view/DocumentRenderer.cxx:1318 @@ -158,6 +190,8 @@ starmath/inc/smmod.hxx:69 SmModule mpLocSymbolData std::unique_ptr<SmLocalizedSymbolData> starmath/inc/view.hxx:218 SmViewShell maGraphicController class SmGraphicController +starmath/source/accessibility.hxx:273 + SmEditSource rEditAcc class SmEditAccessible & svl/source/crypto/cryptosign.cxx:121 (anonymous namespace)::(anonymous) extnID SECItem svl/source/crypto/cryptosign.cxx:122 @@ -169,7 +203,7 @@ svl/source/crypto/cryptosign.cxx:281 svl/source/crypto/cryptosign.cxx:282 (anonymous namespace)::(anonymous) failInfo SECItem svtools/source/svhtml/htmlkywd.cxx:558 - HTML_OptionEntry union HTML_OptionEntry::(anonymous at /home/noel/libo/svtools/source/svhtml/htmlkywd.cxx:558:5) + HTML_OptionEntry union HTML_OptionEntry::(anonymous at /home/noel/libo3/svtools/source/svhtml/htmlkywd.cxx:558:5) svtools/source/svhtml/htmlkywd.cxx:560 HTML_OptionEntry::(anonymous) sToken const sal_Char * svtools/source/svhtml/htmlkywd.cxx:561 diff --git a/compilerplugins/clang/unusedfields.writeonly.results b/compilerplugins/clang/unusedfields.writeonly.results index d34eef064553..02c7462e0ce9 100644 --- a/compilerplugins/clang/unusedfields.writeonly.results +++ b/compilerplugins/clang/unusedfields.writeonly.results @@ -54,8 +54,6 @@ canvas/source/cairo/cairo_spritedevicehelper.hxx:77 cairocanvas::SpriteDeviceHelper mbFullScreen _Bool canvas/source/cairo/cairo_spritehelper.hxx:103 cairocanvas::SpriteHelper mbTextureDirty _Bool -canvas/source/opengl/ogl_canvasbitmap.hxx:71 - oglcanvas::CanvasBitmap mbHasAlpha _Bool canvas/source/opengl/ogl_spritedevicehelper.hxx:126 oglcanvas::SpriteDeviceHelper mpDevice css::rendering::XGraphicDevice * chart2/inc/ChartModel.hxx:482 @@ -66,14 +64,8 @@ chart2/source/controller/main/ElementSelector.hxx:37 chart::ListBoxEntryData nHierarchyDepth sal_Int32 chart2/source/inc/MediaDescriptorHelper.hxx:82 apphelper::MediaDescriptorHelper ReadOnly _Bool -chart2/source/model/inc/BaseCoordinateSystem.hxx:118 - chart::BaseCoordinateSystem m_xContext css::uno::Reference<css::uno::XComponentContext> chart2/source/view/charttypes/PieChart.hxx:128 chart::PieChart::PieLabelInfo fValue double -chart2/source/view/inc/GL3DRenderer.hxx:54 - chart::opengl3D::MaterialParameters pad float -chart2/source/view/inc/GL3DRenderer.hxx:55 - chart::opengl3D::MaterialParameters pad1 float chart2/source/view/inc/GL3DRenderer.hxx:63 chart::opengl3D::LightSource lightPower float chart2/source/view/inc/GL3DRenderer.hxx:80 @@ -92,8 +84,6 @@ codemaker/source/cppumaker/dependencies.hxx:115 codemaker::cppumaker::Dependencies m_doubleDependency _Bool configmgr/source/components.cxx:163 configmgr::Components::WriteThread reference_ rtl::Reference<WriteThread> * -connectivity/source/drivers/evoab2/NStatement.hxx:58 - connectivity::evoab::FieldSort bAscending _Bool connectivity/source/drivers/mork/MorkParser.hxx:133 MorkParser error_ enum MorkErrors connectivity/source/inc/dbase/DTable.hxx:62 @@ -170,7 +160,7 @@ cui/source/inc/cuihyperdlg.hxx:76 SvxHpLinkDlg maCtrl class SvxHlinkCtrl dbaccess/source/core/dataaccess/documentdefinition.cxx:290 dbaccess::LifetimeCoupler m_xClient Reference<class com::sun::star::uno::XInterface> -desktop/qa/desktop_lib/test_desktop_lib.cxx:176 +desktop/qa/desktop_lib/test_desktop_lib.cxx:178 DesktopLOKTest m_bModified _Bool desktop/source/deployment/gui/dp_gui_updateinstalldialog.cxx:119 dp_gui::UpdateCommandEnv m_installThread ::rtl::Reference<UpdateInstallDialog::Thread> @@ -194,8 +184,6 @@ drawinglayer/source/tools/emfppen.hxx:63 emfplushelper::EMFPPen customStartCap struct emfplushelper::EMFPCustomLineCap * drawinglayer/source/tools/emfppen.hxx:65 emfplushelper::EMFPPen customEndCap struct emfplushelper::EMFPCustomLineCap * -editeng/inc/editdoc.hxx:486 - EditLine nCrsrHeight sal_uInt16 embeddedobj/source/inc/oleembobj.hxx:127 OleEmbeddedObject m_nTargetState sal_Int32 embeddedobj/source/inc/oleembobj.hxx:139 @@ -246,10 +234,6 @@ include/connectivity/OSubComponent.hxx:54 connectivity::OSubComponent m_xParent css::uno::Reference<css::uno::XInterface> include/editeng/adjustitem.hxx:39 SvxAdjustItem bLeft _Bool -include/formula/vectortoken.hxx:65 - formula::SingleVectorRefToken mnRequestedLength size_t -include/formula/vectortoken.hxx:85 - formula::DoubleVectorRefToken mnRequestedLength size_t include/LibreOfficeKit/LibreOfficeKit.h:108 _LibreOfficeKitDocumentClass nSize size_t include/opencl/openclwrapper.hxx:36 @@ -286,8 +270,6 @@ include/xmloff/shapeimport.hxx:181 SdXML3DSceneAttributesHelper mbVPNUsed _Bool include/xmloff/shapeimport.hxx:182 SdXML3DSceneAttributesHelper mbVUPUsed _Bool -include/xmloff/xmlexp.hxx:141 - SvXMLExport msImgFilterName class rtl::OUString l10ntools/inc/common.hxx:31 common::HandledArgs m_bUTF8BOM _Bool libreofficekit/qa/gtktiledviewer/gtv-application-window.hxx:61 @@ -336,8 +318,6 @@ sal/textenc/tcvtutf7.cxx:396 ImplUTF7FromUCContextData mnBitBuffer sal_uInt32 sal/textenc/tcvtutf7.cxx:397 ImplUTF7FromUCContextData mnBufferBits sal_uInt32 -sc/inc/chartarr.hxx:61 - ScChartArray aName class rtl::OUString sc/inc/compiler.hxx:258 ScCompiler::AddInMap pODFF const char * sc/inc/compiler.hxx:259 @@ -354,10 +334,6 @@ sc/source/core/data/cellvalues.cxx:25 sc::(anonymous namespace)::BlockPos mnEnd size_t sc/source/core/data/column4.cxx:1290 (anonymous namespace)::StartListeningFormulaCellsHandler mnStartRow SCROW -sc/source/core/data/document.cxx:1269 - (anonymous namespace)::BroadcastRecalcOnRefMoveHandler aSwitch sc::AutoCalcSwitch -sc/source/core/data/document.cxx:1270 - (anonymous namespace)::BroadcastRecalcOnRefMoveHandler aBulk class ScBulkBroadcast sc/source/filter/excel/xltoolbar.hxx:23 TBCCmd cmdID sal_uInt16 sc/source/filter/excel/xltoolbar.hxx:24 @@ -390,9 +366,9 @@ sc/source/filter/inc/exp_op.hxx:52 ExportBiff5 pExcRoot struct RootData * sc/source/filter/inc/imp_op.hxx:88 ImportExcel::LastFormula mpCell class ScFormulaCell * -sc/source/filter/inc/orcusinterface.hxx:355 +sc/source/filter/inc/orcusinterface.hxx:353 ScOrcusStyles::xf mnStyleXf size_t -sc/source/filter/inc/orcusinterface.hxx:373 +sc/source/filter/inc/orcusinterface.hxx:371 ScOrcusStyles::cell_style mnBuiltInId size_t sc/source/filter/inc/root.hxx:95 LOTUS_ROOT eActType enum Lotus123Typ @@ -416,7 +392,7 @@ sc/source/ui/inc/filtdlg.hxx:198 ScSpecialFilterDlg pOptionsMgr class ScFilterOptionsMgr * sc/source/ui/inc/preview.hxx:47 ScPreview nTabPage long -sc/source/ui/inc/tabvwsh.hxx:129 +sc/source/ui/inc/tabvwsh.hxx:136 ScTabViewShell pPivotSource class ScArea * sd/source/filter/eppt/eppt.hxx:176 PPTWriter mnTxId sal_uInt32 @@ -440,16 +416,12 @@ sd/source/ui/sidebar/MasterPageContainerProviders.hxx:136 sd::sidebar::TemplatePreviewProvider msURL class rtl::OUString sd/source/ui/sidebar/SlideBackground.hxx:99 sd::sidebar::SlideBackground m_pContainer VclPtr<class VclVBox> -sd/source/ui/slidesorter/view/SlsLayouter.cxx:61 - sd::slidesorter::view::Layouter::Implementation mpTheme std::shared_ptr<view::Theme> sfx2/source/inc/appdata.hxx:74 SfxAppData_Impl pDocTopics SfxDdeDocTopics_Impl * sfx2/source/inc/appdata.hxx:75 SfxAppData_Impl pTriggerTopic class SfxDdeTriggerTopic_Impl * sfx2/source/inc/appdata.hxx:76 SfxAppData_Impl pDdeService2 class DdeService * -sfx2/source/inc/workwin.hxx:50 - SfxObjectBar_Impl nPos sal_uInt16 sfx2/source/view/classificationcontroller.cxx:59 sfx2::ClassificationCategoriesController m_aPropertyListener class sfx2::ClassificationPropertyListener slideshow/source/engine/opengl/TransitionImpl.hxx:296 @@ -504,11 +476,11 @@ svx/source/table/tablertfimporter.cxx:53 sdr::table::RTFCellDefault maItemSet class SfxItemSet sw/inc/shellio.hxx:147 SwReader aFileName class rtl::OUString -sw/source/core/doc/tblafmt.cxx:183 +sw/source/core/doc/tblafmt.cxx:184 SwAfVersions m_nVerticalAlignmentVersion sal_uInt16 sw/source/core/inc/swfont.hxx:980 SvStatistics nGetStretchTextSize sal_uInt16 -sw/source/core/text/xmldump.cxx:33 +sw/source/core/text/xmldump.cxx:34 XmlPortionDumper ofs sal_Int32 sw/source/filter/html/htmlcss1.cxx:77 SwCSS1ItemIds nFormatBreak sal_uInt16 @@ -523,7 +495,7 @@ sw/source/filter/inc/rtf.hxx:29 sw/source/filter/inc/rtf.hxx:30 RTFSurround::(anonymous union)::(anonymous) nJunk sal_uInt8 sw/source/filter/inc/rtf.hxx:31 - RTFSurround::(anonymous) Flags struct (anonymous struct at /home/noel/libo/sw/source/filter/inc/rtf.hxx:27:9) + RTFSurround::(anonymous) Flags struct (anonymous struct at /home/noel/libo3/sw/source/filter/inc/rtf.hxx:27:9) ucb/source/ucp/gio/gio_mount.hxx:46 OOoMountOperationClass parent_class GMountOperationClass ucb/source/ucp/gio/gio_mount.hxx:49 |