loplugin:unusedfields in registry..sax
Change-Id: Ie0e2ecaadb49273cb4e78bc894111523940e7c8e Reviewed-on: https://gerrit.libreoffice.org/39098 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
This commit is contained in:
@@ -861,7 +861,6 @@ class MethodList : public BlopObject
|
|||||||
public:
|
public:
|
||||||
|
|
||||||
sal_uInt16 m_numOfEntries;
|
sal_uInt16 m_numOfEntries;
|
||||||
sal_uInt16 m_numOfMethodEntries;
|
|
||||||
sal_uInt16 m_numOfParamEntries;
|
sal_uInt16 m_numOfParamEntries;
|
||||||
size_t m_PARAM_ENTRY_SIZE;
|
size_t m_PARAM_ENTRY_SIZE;
|
||||||
std::unique_ptr<sal_uInt32[]> m_pIndex;
|
std::unique_ptr<sal_uInt32[]> m_pIndex;
|
||||||
@@ -874,12 +873,11 @@ public:
|
|||||||
{
|
{
|
||||||
if ( m_numOfEntries > 0 )
|
if ( m_numOfEntries > 0 )
|
||||||
{
|
{
|
||||||
m_numOfMethodEntries = readUINT16(0);
|
readUINT16(0) /* numOfMethodEntries */;
|
||||||
m_numOfParamEntries = readUINT16(sizeof(sal_uInt16));
|
m_numOfParamEntries = readUINT16(sizeof(sal_uInt16));
|
||||||
m_PARAM_ENTRY_SIZE = m_numOfParamEntries * sizeof(sal_uInt16);
|
m_PARAM_ENTRY_SIZE = m_numOfParamEntries * sizeof(sal_uInt16);
|
||||||
} else
|
} else
|
||||||
{
|
{
|
||||||
m_numOfMethodEntries = 0;
|
|
||||||
m_numOfParamEntries = 0;
|
m_numOfParamEntries = 0;
|
||||||
m_PARAM_ENTRY_SIZE = 0;
|
m_PARAM_ENTRY_SIZE = 0;
|
||||||
}
|
}
|
||||||
|
@@ -122,7 +122,6 @@ namespace rptui
|
|||||||
bool m_bGridVisible;
|
bool m_bGridVisible;
|
||||||
bool m_bGridUse;
|
bool m_bGridUse;
|
||||||
bool m_bShowProperties;
|
bool m_bShowProperties;
|
||||||
bool m_bGroupFloaterWasVisible;
|
|
||||||
bool m_bHelplinesMove;
|
bool m_bHelplinesMove;
|
||||||
bool m_bChartEnabled;
|
bool m_bChartEnabled;
|
||||||
bool m_bChartEnabledAsked;
|
bool m_bChartEnabledAsked;
|
||||||
|
@@ -288,7 +288,6 @@ OReportController::OReportController(Reference< XComponentContext > const & xCon
|
|||||||
,m_bGridVisible(true)
|
,m_bGridVisible(true)
|
||||||
,m_bGridUse(true)
|
,m_bGridUse(true)
|
||||||
,m_bShowProperties(true)
|
,m_bShowProperties(true)
|
||||||
,m_bGroupFloaterWasVisible(false)
|
|
||||||
,m_bHelplinesMove(true)
|
,m_bHelplinesMove(true)
|
||||||
,m_bChartEnabled(false)
|
,m_bChartEnabled(false)
|
||||||
,m_bChartEnabledAsked(false)
|
,m_bChartEnabledAsked(false)
|
||||||
@@ -1414,7 +1413,6 @@ void OReportController::Execute(sal_uInt16 _nId, const Sequence< PropertyValue >
|
|||||||
break;
|
break;
|
||||||
case SID_SORTINGANDGROUPING:
|
case SID_SORTINGANDGROUPING:
|
||||||
openSortingAndGroupingDialog();
|
openSortingAndGroupingDialog();
|
||||||
m_bGroupFloaterWasVisible = m_pGroupsFloater && m_pGroupsFloater->IsVisible();
|
|
||||||
break;
|
break;
|
||||||
case SID_BACKGROUND_COLOR:
|
case SID_BACKGROUND_COLOR:
|
||||||
{
|
{
|
||||||
|
@@ -31,8 +31,6 @@ class RscTypCont;
|
|||||||
class RscFileInst
|
class RscFileInst
|
||||||
{
|
{
|
||||||
ERRTYPE aFirstError;
|
ERRTYPE aFirstError;
|
||||||
sal_uInt32 nErrorLine;
|
|
||||||
sal_uInt32 nErrorPos;
|
|
||||||
sal_uInt32 nLineNo; // line in input file
|
sal_uInt32 nLineNo; // line in input file
|
||||||
RscFileTab::Index lFileIndex; // index input file
|
RscFileTab::Index lFileIndex; // index input file
|
||||||
RscFileTab::Index lSrcIndex; // index base file
|
RscFileTab::Index lSrcIndex; // index base file
|
||||||
|
@@ -79,7 +79,6 @@ class RscWriteRc
|
|||||||
{
|
{
|
||||||
sal_uInt32 nLen;
|
sal_uInt32 nLen;
|
||||||
bool bSwap;
|
bool bSwap;
|
||||||
RSCBYTEORDER_TYPE nByteOrder;
|
|
||||||
char * pMem;
|
char * pMem;
|
||||||
char * GetPointer( sal_uInt32 nSize );
|
char * GetPointer( sal_uInt32 nSize );
|
||||||
public:
|
public:
|
||||||
|
@@ -34,8 +34,6 @@ void RscFileInst::Init()
|
|||||||
|
|
||||||
RscFileInst::RscFileInst( RscTypCont * pTC, RscFileTab::Index lIndexSrc,
|
RscFileInst::RscFileInst( RscTypCont * pTC, RscFileTab::Index lIndexSrc,
|
||||||
RscFileTab::Index lFIndex, FILE * fFile )
|
RscFileTab::Index lFIndex, FILE * fFile )
|
||||||
: nErrorLine(0)
|
|
||||||
, nErrorPos(0)
|
|
||||||
{
|
{
|
||||||
pTypCont = pTC;
|
pTypCont = pTC;
|
||||||
Init();
|
Init();
|
||||||
@@ -156,8 +154,6 @@ void RscFileInst::SetError( ERRTYPE aError )
|
|||||||
if( aError.IsOk() )
|
if( aError.IsOk() )
|
||||||
{
|
{
|
||||||
aFirstError = aError;
|
aFirstError = aError;
|
||||||
nErrorLine = GetLineNo();
|
|
||||||
nErrorPos = GetScanPos() -1;
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@@ -191,7 +191,6 @@ RscWriteRc::RscWriteRc( RSCBYTEORDER_TYPE nOrder )
|
|||||||
#endif
|
#endif
|
||||||
bSwap = nOrder != nMachineOrder;
|
bSwap = nOrder != nMachineOrder;
|
||||||
}
|
}
|
||||||
nByteOrder = nOrder;
|
|
||||||
nLen = 0;
|
nLen = 0;
|
||||||
pMem = nullptr;
|
pMem = nullptr;
|
||||||
}
|
}
|
||||||
|
@@ -79,7 +79,6 @@ struct oslProcessImpl {
|
|||||||
struct ProcessData
|
struct ProcessData
|
||||||
{
|
{
|
||||||
const sal_Char* m_pszArgs[MAX_ARGS + 1];
|
const sal_Char* m_pszArgs[MAX_ARGS + 1];
|
||||||
oslProcessOption m_options;
|
|
||||||
const sal_Char* m_pszDir;
|
const sal_Char* m_pszDir;
|
||||||
sal_Char* m_pszEnv[MAX_ENVS + 1];
|
sal_Char* m_pszEnv[MAX_ENVS + 1];
|
||||||
uid_t m_uid;
|
uid_t m_uid;
|
||||||
@@ -604,7 +603,6 @@ oslProcessError SAL_CALL osl_psz_executeProcess(sal_Char *pszImageName,
|
|||||||
Data.m_pszArgs[i+2] = nullptr;
|
Data.m_pszArgs[i+2] = nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
Data.m_options = Options;
|
|
||||||
Data.m_pszDir = (pszDirectory != nullptr) ? strdup(pszDirectory) : nullptr;
|
Data.m_pszDir = (pszDirectory != nullptr) ? strdup(pszDirectory) : nullptr;
|
||||||
|
|
||||||
if (pszEnvironments != nullptr)
|
if (pszEnvironments != nullptr)
|
||||||
|
@@ -786,7 +786,6 @@ rtl_cache_activate (
|
|||||||
size_t objalign,
|
size_t objalign,
|
||||||
int (SAL_CALL * constructor)(void * obj, void * userarg),
|
int (SAL_CALL * constructor)(void * obj, void * userarg),
|
||||||
void (SAL_CALL * destructor) (void * obj, void * userarg),
|
void (SAL_CALL * destructor) (void * obj, void * userarg),
|
||||||
void (SAL_CALL * reclaim) (void * userarg),
|
|
||||||
void * userarg,
|
void * userarg,
|
||||||
rtl_arena_type * source,
|
rtl_arena_type * source,
|
||||||
int flags
|
int flags
|
||||||
@@ -829,7 +828,6 @@ rtl_cache_activate (
|
|||||||
|
|
||||||
cache->m_constructor = constructor;
|
cache->m_constructor = constructor;
|
||||||
cache->m_destructor = destructor;
|
cache->m_destructor = destructor;
|
||||||
cache->m_reclaim = reclaim;
|
|
||||||
cache->m_userarg = userarg;
|
cache->m_userarg = userarg;
|
||||||
|
|
||||||
/* slab layer */
|
/* slab layer */
|
||||||
@@ -1056,7 +1054,7 @@ SAL_CALL rtl_cache_create (
|
|||||||
sal_Size objalign,
|
sal_Size objalign,
|
||||||
int (SAL_CALL * constructor)(void * obj, void * userarg),
|
int (SAL_CALL * constructor)(void * obj, void * userarg),
|
||||||
void (SAL_CALL * destructor) (void * obj, void * userarg),
|
void (SAL_CALL * destructor) (void * obj, void * userarg),
|
||||||
void (SAL_CALL * reclaim) (void * userarg),
|
void (SAL_CALL * /*reclaim*/) (void * userarg),
|
||||||
void * userarg,
|
void * userarg,
|
||||||
rtl_arena_type * source,
|
rtl_arena_type * source,
|
||||||
int flags
|
int flags
|
||||||
@@ -1086,7 +1084,6 @@ try_alloc:
|
|||||||
objalign,
|
objalign,
|
||||||
constructor,
|
constructor,
|
||||||
destructor,
|
destructor,
|
||||||
reclaim,
|
|
||||||
userarg,
|
userarg,
|
||||||
source,
|
source,
|
||||||
flags
|
flags
|
||||||
@@ -1552,7 +1549,6 @@ rtl_cache_init()
|
|||||||
0, /* objalign */
|
0, /* objalign */
|
||||||
rtl_cache_magazine_constructor,
|
rtl_cache_magazine_constructor,
|
||||||
rtl_cache_magazine_destructor,
|
rtl_cache_magazine_destructor,
|
||||||
nullptr, /* reclaim */
|
|
||||||
nullptr, /* userarg: NYI */
|
nullptr, /* userarg: NYI */
|
||||||
gp_default_arena, /* source */
|
gp_default_arena, /* source */
|
||||||
RTL_CACHE_FLAG_NOMAGAZINE /* during bootstrap; activated below */
|
RTL_CACHE_FLAG_NOMAGAZINE /* during bootstrap; activated below */
|
||||||
@@ -1576,7 +1572,6 @@ rtl_cache_init()
|
|||||||
0, /* objalign */
|
0, /* objalign */
|
||||||
rtl_cache_slab_constructor,
|
rtl_cache_slab_constructor,
|
||||||
rtl_cache_slab_destructor,
|
rtl_cache_slab_destructor,
|
||||||
nullptr, /* reclaim */
|
|
||||||
nullptr, /* userarg: none */
|
nullptr, /* userarg: none */
|
||||||
gp_default_arena, /* source */
|
gp_default_arena, /* source */
|
||||||
0 /* flags: none */
|
0 /* flags: none */
|
||||||
@@ -1597,7 +1592,6 @@ rtl_cache_init()
|
|||||||
0, /* objalign */
|
0, /* objalign */
|
||||||
nullptr, /* constructor */
|
nullptr, /* constructor */
|
||||||
nullptr, /* destructor */
|
nullptr, /* destructor */
|
||||||
nullptr, /* reclaim */
|
|
||||||
nullptr, /* userarg */
|
nullptr, /* userarg */
|
||||||
gp_default_arena, /* source */
|
gp_default_arena, /* source */
|
||||||
0 /* flags: none */
|
0 /* flags: none */
|
||||||
|
@@ -116,7 +116,6 @@ struct rtl_cache_st
|
|||||||
|
|
||||||
int (SAL_CALL * m_constructor)(void * obj, void * userarg); /* const */
|
int (SAL_CALL * m_constructor)(void * obj, void * userarg); /* const */
|
||||||
void (SAL_CALL * m_destructor) (void * obj, void * userarg); /* const */
|
void (SAL_CALL * m_destructor) (void * obj, void * userarg); /* const */
|
||||||
void (SAL_CALL * m_reclaim) (void * userarg); /* const */
|
|
||||||
void * m_userarg;
|
void * m_userarg;
|
||||||
|
|
||||||
/* slab layer */
|
/* slab layer */
|
||||||
|
@@ -41,7 +41,6 @@ private:
|
|||||||
rtl_TextToUnicodeContext m_contextText2Unicode;
|
rtl_TextToUnicodeContext m_contextText2Unicode;
|
||||||
bool m_bCanContinue;
|
bool m_bCanContinue;
|
||||||
bool m_bInitialized;
|
bool m_bInitialized;
|
||||||
rtl_TextEncoding m_rtlEncoding;
|
|
||||||
css::uno::Sequence<sal_Int8> m_seqSource;
|
css::uno::Sequence<sal_Int8> m_seqSource;
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -61,7 +60,6 @@ public:
|
|||||||
private:
|
private:
|
||||||
rtl_UnicodeToTextConverter m_convUnicode2Text;
|
rtl_UnicodeToTextConverter m_convUnicode2Text;
|
||||||
rtl_UnicodeToTextContext m_contextUnicode2Text;
|
rtl_UnicodeToTextContext m_contextUnicode2Text;
|
||||||
rtl_TextEncoding m_rtlEncoding;
|
|
||||||
css::uno::Sequence<sal_Unicode> m_seqSource;
|
css::uno::Sequence<sal_Unicode> m_seqSource;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@@ -346,7 +346,6 @@ void XMLFile2UTFConverter::initializeDecoding()
|
|||||||
Text2UnicodeConverter::Text2UnicodeConverter( const OString &sEncoding )
|
Text2UnicodeConverter::Text2UnicodeConverter( const OString &sEncoding )
|
||||||
: m_convText2Unicode(nullptr)
|
: m_convText2Unicode(nullptr)
|
||||||
, m_contextText2Unicode(nullptr)
|
, m_contextText2Unicode(nullptr)
|
||||||
, m_rtlEncoding(RTL_TEXTENCODING_DONTKNOW)
|
|
||||||
{
|
{
|
||||||
rtl_TextEncoding encoding = rtl_getTextEncodingFromMimeCharset( sEncoding.getStr() );
|
rtl_TextEncoding encoding = rtl_getTextEncodingFromMimeCharset( sEncoding.getStr() );
|
||||||
if( RTL_TEXTENCODING_DONTKNOW == encoding )
|
if( RTL_TEXTENCODING_DONTKNOW == encoding )
|
||||||
@@ -376,7 +375,6 @@ void Text2UnicodeConverter::init( rtl_TextEncoding encoding )
|
|||||||
|
|
||||||
m_convText2Unicode = rtl_createTextToUnicodeConverter(encoding);
|
m_convText2Unicode = rtl_createTextToUnicodeConverter(encoding);
|
||||||
m_contextText2Unicode = rtl_createTextToUnicodeContext( m_convText2Unicode );
|
m_contextText2Unicode = rtl_createTextToUnicodeContext( m_convText2Unicode );
|
||||||
m_rtlEncoding = encoding;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -448,7 +446,6 @@ Unicode2TextConverter::Unicode2TextConverter( rtl_TextEncoding encoding )
|
|||||||
{
|
{
|
||||||
m_convUnicode2Text = rtl_createUnicodeToTextConverter( encoding );
|
m_convUnicode2Text = rtl_createUnicodeToTextConverter( encoding );
|
||||||
m_contextUnicode2Text = rtl_createUnicodeToTextContext( m_convUnicode2Text );
|
m_contextUnicode2Text = rtl_createUnicodeToTextContext( m_convUnicode2Text );
|
||||||
m_rtlEncoding = encoding;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user