Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
e3990370
Kaydet (Commit)
e3990370
authored
Kas 20, 2015
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
loplugin:unusedfields extensions
Change-Id: I7cee47eca35b02472639cdd267ddd450145803de
üst
6ed47b1d
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
2 additions
and
14 deletions
+2
-14
admininvokationpage.cxx
extensions/source/abpilot/admininvokationpage.cxx
+0
-1
admininvokationpage.hxx
extensions/source/abpilot/admininvokationpage.hxx
+0
-2
groupboxwiz.hxx
extensions/source/dbpilots/groupboxwiz.hxx
+0
-1
plugcon.hxx
extensions/source/plugin/inc/plugin/unx/plugcon.hxx
+0
-1
plugcon.cxx
extensions/source/plugin/unx/plugcon.cxx
+0
-1
unxmgr.cxx
extensions/source/plugin/unx/unxmgr.cxx
+2
-8
No files found.
extensions/source/abpilot/admininvokationpage.cxx
Dosyayı görüntüle @
e3990370
...
...
@@ -27,7 +27,6 @@ namespace abp
AdminDialogInvokationPage
::
AdminDialogInvokationPage
(
OAddessBookSourcePilot
*
_pParent
)
:
AddressBookSourcePage
(
_pParent
,
"InvokeAdminPage"
,
"modules/sabpilot/ui/invokeadminpage.ui"
)
,
m_bSuccessfullyExecutedDialog
(
false
)
{
get
(
m_pInvokeAdminDialog
,
"settings"
);
get
(
m_pErrorMessage
,
"warning"
);
...
...
extensions/source/abpilot/admininvokationpage.hxx
Dosyayı görüntüle @
e3990370
...
...
@@ -31,8 +31,6 @@ namespace abp
VclPtr
<
PushButton
>
m_pInvokeAdminDialog
;
VclPtr
<
FixedText
>
m_pErrorMessage
;
bool
m_bSuccessfullyExecutedDialog
;
public
:
explicit
AdminDialogInvokationPage
(
OAddessBookSourcePilot
*
_pParent
);
virtual
~
AdminDialogInvokationPage
();
...
...
extensions/source/dbpilots/groupboxwiz.hxx
Dosyayı görüntüle @
e3990370
...
...
@@ -33,7 +33,6 @@ namespace dbp
StringArray
aValues
;
OUString
sDefaultField
;
OUString
sDBField
;
OUString
sName
;
};
class
OGroupBoxWizard
:
public
OControlWizard
...
...
extensions/source/plugin/inc/plugin/unx/plugcon.hxx
Dosyayı görüntüle @
e3990370
...
...
@@ -98,7 +98,6 @@ public:
char
*
pMimeType
;
void
*
pShell
;
void
*
pWidget
;
void
*
pForm
;
GtkWidget
*
pGtkWindow
;
GtkWidget
*
pGtkWidget
;
...
...
extensions/source/plugin/unx/plugcon.cxx
Dosyayı görüntüle @
e3990370
...
...
@@ -197,7 +197,6 @@ ConnectorInstance::ConnectorInstance( NPP inst, char* type,
instance
(
inst
),
pShell
(
nullptr
),
pWidget
(
nullptr
),
pForm
(
nullptr
),
pGtkWindow
(
nullptr
),
pGtkWidget
(
nullptr
),
bShouldUseXEmbed
(
false
),
...
...
extensions/source/plugin/unx/unxmgr.cxx
Dosyayı görüntüle @
e3990370
...
...
@@ -178,12 +178,6 @@ static bool CheckPlugin( const OString& rPath, list< PluginDescription* >& rDesc
return
nDescriptions
>
0
;
}
union
maxDirent
{
char
aBuffer
[
sizeof
(
struct
dirent
)
+
PATH_MAX
+
1
];
struct
dirent
asDirent
;
};
static
void
CheckPluginRegistryFiles
(
const
OString
&
rPath
,
list
<
PluginDescription
*
>&
rDescriptions
)
{
OStringBuffer
aPath
(
1024
);
...
...
@@ -212,7 +206,7 @@ static void CheckPluginRegistryFiles( const OString& rPath, list< PluginDescript
DIR
*
pDIR
=
opendir
(
rPath
.
getStr
()
);
struct
dirent
*
pDirEnt
=
nullptr
;
struct
stat
aStat
;
maxD
irent
u
;
struct
d
irent
u
;
while
(
pDIR
&&
!
readdir_r
(
pDIR
,
&
u
.
asDirent
,
&
pDirEnt
)
&&
pDirEnt
)
{
char
*
pBaseName
=
u
.
asDirent
.
d_name
;
...
...
@@ -267,7 +261,7 @@ Sequence<PluginDescription> XPluginManager_Impl::impl_getPluginDescriptions() th
OString
aSearchPath
=
aSearchBuffer
.
makeStringAndClear
();
sal_Int32
nIndex
=
0
;
maxD
irent
u
;
struct
d
irent
u
;
do
{
OString
aPath
(
aSearchPath
.
getToken
(
0
,
':'
,
nIndex
));
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment