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
6f57b77c
Kaydet (Commit)
6f57b77c
authored
Mar 10, 2014
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
callcatcher: update unused code
Change-Id: I0d7f204473bd5fcddf2342850a16194fdb385c13
üst
b6588bd7
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
1 addition
and
104 deletions
+1
-104
combobox.hxx
include/vcl/combobox.hxx
+0
-1
lstbox.hxx
include/vcl/lstbox.hxx
+0
-1
accessibilityoptions.cxx
svtools/source/config/accessibilityoptions.cxx
+0
-85
unusedcode.easy
unusedcode.easy
+1
-6
combobox.cxx
vcl/source/control/combobox.cxx
+0
-5
lstbox.cxx
vcl/source/control/lstbox.cxx
+0
-6
No files found.
include/vcl/combobox.hxx
Dosyayı görüntüle @
6f57b77c
...
...
@@ -179,7 +179,6 @@ public:
OUString
GetMRUEntries
(
sal_Unicode
cSep
=
';'
)
const
;
void
SetMaxMRUCount
(
sal_Int32
n
);
sal_Int32
GetMaxMRUCount
()
const
;
sal_Int32
GetMRUCount
()
const
;
void
SetEntryData
(
sal_Int32
nPos
,
void
*
pNewData
);
void
*
GetEntryData
(
sal_Int32
nPos
)
const
;
...
...
include/vcl/lstbox.hxx
Dosyayı görüntüle @
6f57b77c
...
...
@@ -199,7 +199,6 @@ public:
Size
CalcBlockSize
(
sal_uInt16
nColumns
,
sal_uInt16
nLines
)
const
;
void
GetMaxVisColumnsAndLines
(
sal_uInt16
&
rnCols
,
sal_uInt16
&
rnLines
)
const
;
sal_Int32
GetMRUCount
()
const
;
sal_uInt16
GetDisplayLineCount
()
const
;
void
EnableMirroring
();
...
...
svtools/source/config/accessibilityoptions.cxx
Dosyayı görüntüle @
6f57b77c
...
...
@@ -98,10 +98,6 @@ public:
void
SetIsSystemFont
(
sal_Bool
bSet
);
void
SetHelpTipSeconds
(
sal_Int16
nSet
);
void
SetSelectionInReadonly
(
sal_Bool
bSet
);
void
SetEdgeBlending
(
sal_Int16
nSet
);
void
SetListBoxMaximumLineCount
(
sal_Int16
nSet
);
void
SetColorValueSetColumnCount
(
sal_Int16
nSet
);
void
SetPreviewUsesCheckeredBackground
(
sal_Bool
bSet
);
sal_Bool
IsModified
()
const
{
return
bIsModified
;
};
};
...
...
@@ -621,87 +617,6 @@ void SvtAccessibilityOptions_Impl::SetVCLSettings()
Application
::
SetSettings
(
aAllSettings
);
}
void
SvtAccessibilityOptions_Impl
::
SetEdgeBlending
(
sal_Int16
nSet
)
{
css
::
uno
::
Reference
<
css
::
beans
::
XPropertySet
>
xNode
(
m_xCfg
,
css
::
uno
::
UNO_QUERY
);
try
{
if
(
xNode
.
is
()
&&
xNode
->
getPropertyValue
(
s_sEdgeBlending
)
!=
nSet
)
{
xNode
->
setPropertyValue
(
s_sEdgeBlending
,
css
::
uno
::
makeAny
(
nSet
));
::
comphelper
::
ConfigurationHelper
::
flush
(
m_xCfg
);
bIsModified
=
sal_True
;
}
}
catch
(
const
css
::
uno
::
Exception
&
ex
)
{
SAL_WARN
(
"svtools"
,
"Caught unexpected: "
<<
ex
.
Message
);
}
}
void
SvtAccessibilityOptions_Impl
::
SetListBoxMaximumLineCount
(
sal_Int16
nSet
)
{
css
::
uno
::
Reference
<
css
::
beans
::
XPropertySet
>
xNode
(
m_xCfg
,
css
::
uno
::
UNO_QUERY
);
try
{
if
(
xNode
.
is
()
&&
xNode
->
getPropertyValue
(
s_sListBoxMaximumLineCount
)
!=
nSet
)
{
xNode
->
setPropertyValue
(
s_sListBoxMaximumLineCount
,
css
::
uno
::
makeAny
(
nSet
));
::
comphelper
::
ConfigurationHelper
::
flush
(
m_xCfg
);
bIsModified
=
sal_True
;
}
}
catch
(
const
css
::
uno
::
Exception
&
ex
)
{
SAL_WARN
(
"svtools"
,
"Caught unexpected: "
<<
ex
.
Message
);
}
}
void
SvtAccessibilityOptions_Impl
::
SetColorValueSetColumnCount
(
sal_Int16
nSet
)
{
css
::
uno
::
Reference
<
css
::
beans
::
XPropertySet
>
xNode
(
m_xCfg
,
css
::
uno
::
UNO_QUERY
);
try
{
if
(
xNode
.
is
()
&&
xNode
->
getPropertyValue
(
s_sColorValueSetColumnCount
)
!=
nSet
)
{
xNode
->
setPropertyValue
(
s_sColorValueSetColumnCount
,
css
::
uno
::
makeAny
(
nSet
));
::
comphelper
::
ConfigurationHelper
::
flush
(
m_xCfg
);
bIsModified
=
sal_True
;
}
}
catch
(
const
css
::
uno
::
Exception
&
ex
)
{
SAL_WARN
(
"svtools"
,
"Caught unexpected: "
<<
ex
.
Message
);
}
}
void
SvtAccessibilityOptions_Impl
::
SetPreviewUsesCheckeredBackground
(
sal_Bool
bSet
)
{
css
::
uno
::
Reference
<
css
::
beans
::
XPropertySet
>
xNode
(
m_xCfg
,
css
::
uno
::
UNO_QUERY
);
try
{
if
(
xNode
.
is
()
&&
xNode
->
getPropertyValue
(
s_sPreviewUsesCheckeredBackground
)
!=
bSet
)
{
xNode
->
setPropertyValue
(
s_sPreviewUsesCheckeredBackground
,
css
::
uno
::
makeAny
(
bSet
));
::
comphelper
::
ConfigurationHelper
::
flush
(
m_xCfg
);
bIsModified
=
sal_True
;
}
}
catch
(
const
css
::
uno
::
Exception
&
ex
)
{
SAL_WARN
(
"svtools"
,
"Caught unexpected: "
<<
ex
.
Message
);
}
}
// class SvtAccessibilityOptions --------------------------------------------------
SvtAccessibilityOptions
::
SvtAccessibilityOptions
()
...
...
unusedcode.easy
Dosyayı görüntüle @
6f57b77c
...
...
@@ -2,7 +2,6 @@ AstDeclaration::setName(rtl::OString const&)
BigInt::BigInt(unsigned int)
CalcUnoApiTest::CalcUnoApiTest(rtl::OUString const&)
Chart2ExportTest::testFdo74115WallGradientFill()
ComboBox::GetMRUCount() const
ConfigurationAccess::getPath(rtl::OUString const&)
DocxSdrExport::getFlyFrameGraphic()
DocxSdrExport::setFlyFrameGraphic(bool)
...
...
@@ -15,7 +14,6 @@ GDriveSession::GDriveSession()
Json::Json(std::map<std::basic_string<char, std::char_traits<char>, std::allocator<char> >, Json, std::less<std::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Json> > > const&)
Json::Json(std::map<std::basic_string<char, std::char_traits<char>, std::allocator<char> >, boost::shared_ptr<libcmis::Property>, std::less<std::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::basic_string<char, std::char_traits<char>, std::allocator<char> > const, boost::shared_ptr<libcmis::Property> > > > const&)
Json::swap(Json&)
ListBox::GetMRUCount() const
MenuBar::AddMenuBarButton(Image const&, Link const&, rtl::OUString const&, unsigned short)
MenuBar::GetMenuBarButtonRectPixel(unsigned short)
MenuBar::RemoveMenuBarButton(unsigned short)
...
...
@@ -48,10 +46,6 @@ StyleSettings::SetTitleHeight(long)
StyleSettings::SetUseFlatBorders(bool)
StyleSettings::SetUseFlatMenus(bool)
SvpSalInstance::PostedEventsInQueue()
SvtAccessibilityOptions_Impl::SetColorValueSetColumnCount(short)
SvtAccessibilityOptions_Impl::SetEdgeBlending(short)
SvtAccessibilityOptions_Impl::SetListBoxMaximumLineCount(short)
SvtAccessibilityOptions_Impl::SetPreviewUsesCheckeredBackground(unsigned char)
SvtListener::IsListening(SvtBroadcaster&) const
SvxNumberFormatShell::IsAdded_Impl(unsigned long)
SwAccessibleField::SwAccessibleField(SwField*, SwAccessibleParagraph*, short)
...
...
@@ -199,4 +193,5 @@ std::_Rb_tree<rtl::OUString, std::pair<rtl::OUString const, (anonymous namespace
std::auto_ptr<formula::FormulaTokenArray>::auto_ptr(std::auto_ptr<formula::FormulaTokenArray>&)
std::auto_ptr<formula::FormulaTokenArray>::auto_ptr(std::auto_ptr_ref<formula::FormulaTokenArray>)
std::vector<rtl::Reference<oox::xls::(anonymous namespace)::WorkerThread>, std::allocator<rtl::Reference<oox::xls::(anonymous namespace)::WorkerThread> > >::reserve(unsigned long)
utl::extractTime(com::sun::star::util::DateTime const&, com::sun::star::util::Time&)
vcl::MapChar(vcl::_TrueTypeFont*, unsigned short, bool)
vcl/source/control/combobox.cxx
Dosyayı görüntüle @
6f57b77c
...
...
@@ -1273,11 +1273,6 @@ sal_Int32 ComboBox::GetMaxMRUCount() const
return
mpImplLB
->
GetMaxMRUCount
();
}
sal_Int32
ComboBox
::
GetMRUCount
()
const
{
return
mpImplLB
->
GetEntryList
()
->
GetMRUCount
();
}
sal_uInt16
ComboBox
::
GetDisplayLineCount
()
const
{
return
mpImplLB
->
GetDisplayLineCount
();
...
...
vcl/source/control/lstbox.cxx
Dosyayı görüntüle @
6f57b77c
...
...
@@ -1499,12 +1499,6 @@ void ListBox::SetEdgeBlending(bool bNew)
}
}
sal_Int32
ListBox
::
GetMRUCount
()
const
{
return
mpImplLB
->
GetEntryList
()
->
GetMRUCount
();
}
MultiListBox
::
MultiListBox
(
Window
*
pParent
,
WinBits
nStyle
)
:
ListBox
(
WINDOW_MULTILISTBOX
)
{
...
...
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