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
d49d0139
Kaydet (Commit)
d49d0139
authored
Eyl 17, 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: I2ddda0600ee876e9886ee3221f0ac5ad515fbd22
üst
e03223d4
Hide whitespace changes
Inline
Side-by-side
Showing
18 changed files
with
0 additions
and
269 deletions
+0
-269
gridprinter.hxx
include/svl/gridprinter.hxx
+0
-6
gridprinter.cxx
svl/source/misc/gridprinter.cxx
+0
-10
roadmapwizard.cxx
svtools/source/dialogs/roadmapwizard.cxx
+0
-9
unocontroltablemodel.cxx
svtools/source/uno/unocontroltablemodel.cxx
+0
-16
unocontroltablemodel.hxx
svtools/source/uno/unocontroltablemodel.hxx
+0
-4
UIConfig_swriter.mk
sw/UIConfig_swriter.mk
+0
-1
editsh.hxx
sw/inc/editsh.hxx
+0
-4
editsh.cxx
sw/source/core/edit/editsh.cxx
+0
-8
docxsdrexport.cxx
sw/source/filter/ww8/docxsdrexport.cxx
+0
-5
docxsdrexport.hxx
sw/source/filter/ww8/docxsdrexport.hxx
+0
-2
dbui.cxx
sw/source/uibase/dbui/dbui.cxx
+0
-35
mmconfigitem.cxx
sw/source/uibase/dbui/mmconfigitem.cxx
+0
-18
dbui.hxx
sw/source/uibase/inc/dbui.hxx
+0
-21
mmconfigitem.hxx
sw/source/uibase/inc/mmconfigitem.hxx
+0
-2
mmcreatingdialog.ui
sw/uiconfig/swriter/ui/mmcreatingdialog.ui
+0
-116
unusedcode.easy
unusedcode.easy
+0
-5
WrapPolygonHandler.cxx
writerfilter/source/dmapper/WrapPolygonHandler.cxx
+0
-5
WrapPolygonHandler.hxx
writerfilter/source/dmapper/WrapPolygonHandler.hxx
+0
-2
No files found.
include/svl/gridprinter.hxx
Dosyayı görüntüle @
d49d0139
...
...
@@ -27,14 +27,8 @@ class SVL_DLLPUBLIC GridPrinter
public
:
GridPrinter
(
size_t
nRows
,
size_t
nCols
,
bool
bPrint
=
true
);
~
GridPrinter
();
void
set
(
size_t
nRow
,
size_t
nCol
,
const
OUString
&
rStr
);
void
print
(
const
char
*
pHeader
)
const
;
void
clear
();
void
resize
(
size_t
nRows
,
size_t
nCols
);
};
}
...
...
svl/source/misc/gridprinter.cxx
Dosyayı görüntüle @
d49d0139
...
...
@@ -126,16 +126,6 @@ void GridPrinter::print( const char* pHeader ) const
}
}
void
GridPrinter
::
clear
()
{
mpImpl
->
maMatrix
.
clear
();
}
void
GridPrinter
::
resize
(
size_t
nRows
,
size_t
nCols
)
{
mpImpl
->
maMatrix
.
resize
(
nRows
,
nCols
);
}
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
svtools/source/dialogs/roadmapwizard.cxx
Dosyayı görüntüle @
d49d0139
...
...
@@ -117,17 +117,8 @@ namespace svt
return
nMinLength
;
}
//= RoadmapWizard
#ifdef DBG_UTIL
const
char
*
CheckInvariants
(
const
void
*
pVoid
)
{
return
static_cast
<
const
RoadmapWizard
*
>
(
pVoid
)
->
checkInvariants
();
}
const
sal_Char
*
RoadmapWizard
::
checkInvariants
()
const
{
// all paths have to start with the same state
...
...
svtools/source/uno/unocontroltablemodel.cxx
Dosyayı görüntüle @
d49d0139
...
...
@@ -123,26 +123,10 @@ namespace svt { namespace table
}
};
//= UnoControlTableModel
#ifdef DBG_UTIL
const
char
*
UnoControlTableModel
::
checkInvariants
()
const
{
Reference
<
XGridDataModel
>
const
xDataModel
(
m_pImpl
->
m_aDataModel
);
if
(
!
xDataModel
.
is
()
)
return
"data model anymore"
;
// TODO: more?
return
NULL
;
}
#endif
#define DBG_CHECK_ME() \
DBG_TESTSOLARMUTEX(); \
UnoControlTableModel
::
UnoControlTableModel
()
:
m_pImpl
(
new
UnoControlTableModel_Impl
)
{
...
...
svtools/source/uno/unocontroltablemodel.hxx
Dosyayı görüntüle @
d49d0139
...
...
@@ -152,10 +152,6 @@ namespace svt { namespace table
*/
void
notifyAllDataChanged
()
const
;
#ifdef DBG_UTIL
const
char
*
checkInvariants
()
const
;
#endif
private
:
void
impl_notifyTableMetricsChanged
()
const
;
};
...
...
sw/UIConfig_swriter.mk
Dosyayı görüntüle @
d49d0139
...
...
@@ -171,7 +171,6 @@ $(eval $(call gb_UIConfig_add_uifiles,modules/swriter,\
sw/uiconfig/swriter/ui/queryshowchangesdialog \
sw/uiconfig/swriter/ui/mailmerge \
sw/uiconfig/swriter/ui/mmaddressblockpage \
sw/uiconfig/swriter/ui/mmcreatingdialog \
sw/uiconfig/swriter/ui/mmlayoutpage \
sw/uiconfig/swriter/ui/mmmailbody \
sw/uiconfig/swriter/ui/mmmergepage \
...
...
sw/inc/editsh.hxx
Dosyayı görüntüle @
d49d0139
...
...
@@ -186,10 +186,6 @@ public:
/// Count words in current selection.
void
CountWords
(
SwDocStat
&
rStat
)
const
;
/** Delete non-visible content in the document.
E.g. hidden ranges, hidden paragraphs. */
bool
RemoveInvisibleContent
();
/// Replace fields by text - mailmerge support.
bool
ConvertFieldsToText
();
...
...
sw/source/core/edit/editsh.cxx
Dosyayı görüntüle @
d49d0139
...
...
@@ -748,14 +748,6 @@ SvNumberFormatter* SwEditShell::GetNumberFormatter()
return
GetDoc
()
->
GetNumberFormatter
();
}
bool
SwEditShell
::
RemoveInvisibleContent
()
{
StartAllAction
();
bool
bRet
=
GetDoc
()
->
RemoveInvisibleContent
();
EndAllAction
();
return
bRet
;
}
bool
SwEditShell
::
ConvertFieldsToText
()
{
StartAllAction
();
...
...
sw/source/filter/ww8/docxsdrexport.cxx
Dosyayı görüntüle @
d49d0139
...
...
@@ -270,11 +270,6 @@ bool DocxSdrExport::IsDrawingOpen()
return
m_pImpl
->
m_bDrawingOpen
;
}
bool
DocxSdrExport
::
isParagraphSdtOpen
()
{
return
m_pImpl
->
m_bParagraphSdtOpen
;
}
void
DocxSdrExport
::
setParagraphSdtOpen
(
bool
bParagraphSdtOpen
)
{
m_pImpl
->
m_bParagraphSdtOpen
=
bParagraphSdtOpen
;
...
...
sw/source/filter/ww8/docxsdrexport.hxx
Dosyayı görüntüle @
d49d0139
...
...
@@ -64,8 +64,6 @@ public:
/// Same, as DocxAttributeOutput::m_bBtLr, but for textframe rotation.
bool
getFrameBtLr
();
/// Is paragraph sdt open in the current drawing?
bool
isParagraphSdtOpen
();
/// Set if paragraph sdt open in the current drawing.
void
setParagraphSdtOpen
(
bool
bParagraphSdtOpen
);
...
...
sw/source/uibase/dbui/dbui.cxx
Dosyayı görüntüle @
d49d0139
...
...
@@ -42,41 +42,6 @@ PrintMonitor::PrintMonitor(Window *pParent, PrintMonitorType eType )
m_pPrinting
->
Show
();
}
// Progress Indicator for Creation of personalized Mail Merge documents:
CreateMonitor
::
CreateMonitor
(
Window
*
pParent
)
:
CancelableModelessDialog
(
pParent
,
"MMCreatingDialog"
,
"modules/swriter/ui/mmcreatingdialog.ui"
)
,
m_sCountingPattern
()
,
m_sVariable_Total
(
"%Y"
)
,
m_sVariable_Position
(
"%X"
)
,
m_nTotalCount
(
0
)
,
m_nCurrentPosition
(
0
)
{
get
(
m_pCounting
,
"progress"
);
m_sCountingPattern
=
m_pCounting
->
GetText
();
m_pCounting
->
SetText
(
"..."
);
}
void
CreateMonitor
::
UpdateCountingText
()
{
OUString
sText
(
m_sCountingPattern
);
sText
=
sText
.
replaceAll
(
m_sVariable_Total
,
OUString
::
number
(
m_nTotalCount
)
);
sText
=
sText
.
replaceAll
(
m_sVariable_Position
,
OUString
::
number
(
m_nCurrentPosition
)
);
m_pCounting
->
SetText
(
sText
);
}
void
CreateMonitor
::
SetTotalCount
(
sal_Int32
nTotal
)
{
m_nTotalCount
=
nTotal
;
UpdateCountingText
();
}
void
CreateMonitor
::
SetCurrentPosition
(
sal_Int32
nCurrent
)
{
m_nCurrentPosition
=
nCurrent
;
UpdateCountingText
();
}
CancelableModelessDialog
::
CancelableModelessDialog
(
Window
*
pParent
,
const
OString
&
rID
,
const
OUString
&
rUIXMLDescription
)
:
ModelessDialog
(
pParent
,
rID
,
rUIXMLDescription
)
...
...
sw/source/uibase/dbui/mmconfigitem.cxx
Dosyayı görüntüle @
d49d0139
...
...
@@ -1075,24 +1075,6 @@ void SwMailMergeConfigItem::ExcludeRecord(sal_Int32 nRecord, bool bExclude)
}
}
Sequence
<
Any
>
SwMailMergeConfigItem
::
GetSelection
()
const
{
Sequence
<
Any
>
aRet
(
m_aSelection
.
getLength
());
sal_Int32
nRetIndex
=
0
;
sal_Int32
nRet
;
for
(
sal_Int32
nIndex
=
0
;
nIndex
<
m_aSelection
.
getLength
();
++
nIndex
)
{
m_aSelection
[
nIndex
]
>>=
nRet
;
if
(
nRet
>
0
)
{
aRet
[
nRetIndex
]
<<=
nRet
;
++
nRetIndex
;
}
}
aRet
.
realloc
(
nRetIndex
);
return
aRet
;
}
const
uno
::
Sequence
<
OUString
>&
SwMailMergeConfigItem
::
GetSavedDocuments
()
const
{
...
...
sw/source/uibase/inc/dbui.hxx
Dosyayı görüntüle @
d49d0139
...
...
@@ -53,27 +53,6 @@ public:
PrintMonitor
(
Window
*
pParent
,
PrintMonitorType
eType
);
};
class
CreateMonitor
:
public
CancelableModelessDialog
{
public
:
CreateMonitor
(
Window
*
pParent
);
void
SetTotalCount
(
sal_Int32
nTotal
);
void
SetCurrentPosition
(
sal_Int32
nCurrent
);
private
:
void
UpdateCountingText
();
private
:
FixedText
*
m_pCounting
;
OUString
m_sCountingPattern
;
OUString
m_sVariable_Total
;
OUString
m_sVariable_Position
;
sal_Int32
m_nTotalCount
;
sal_Int32
m_nCurrentPosition
;
};
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
sw/source/uibase/inc/mmconfigitem.hxx
Dosyayı görüntüle @
d49d0139
...
...
@@ -102,8 +102,6 @@ public:
OUString
&
GetFilter
()
const
;
void
SetFilter
(
OUString
&
);
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
com
::
sun
::
star
::
uno
::
Any
>
GetSelection
()
const
;
void
SetSelection
(
const
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
com
::
sun
::
star
::
uno
::
Any
>&
rSelection
);
void
SetCurrentDBData
(
const
SwDBData
&
rDBData
);
...
...
sw/uiconfig/swriter/ui/mmcreatingdialog.ui
deleted
100644 → 0
Dosyayı görüntüle @
e03223d4
<?xml version="1.0" encoding="UTF-8"?>
<interface>
<!-- interface-requires gtk+ 3.0 -->
<object
class=
"GtkDialog"
id=
"MMCreatingDialog"
>
<property
name=
"can_focus"
>
False
</property>
<property
name=
"border_width"
>
6
</property>
<property
name=
"title"
translatable=
"yes"
>
Mail Merge
</property>
<property
name=
"type_hint"
>
dialog
</property>
<child
internal-child=
"vbox"
>
<object
class=
"GtkBox"
id=
"dialog-vbox1"
>
<property
name=
"can_focus"
>
False
</property>
<property
name=
"orientation"
>
vertical
</property>
<property
name=
"spacing"
>
12
</property>
<child
internal-child=
"action_area"
>
<object
class=
"GtkButtonBox"
id=
"dialog-action_area1"
>
<property
name=
"can_focus"
>
False
</property>
<property
name=
"layout_style"
>
end
</property>
<child>
<object
class=
"GtkButton"
id=
"cancel"
>
<property
name=
"label"
>
gtk-cancel
</property>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"receives_default"
>
True
</property>
<property
name=
"use_stock"
>
True
</property>
</object>
<packing>
<property
name=
"expand"
>
False
</property>
<property
name=
"fill"
>
True
</property>
<property
name=
"position"
>
1
</property>
</packing>
</child>
</object>
<packing>
<property
name=
"expand"
>
False
</property>
<property
name=
"fill"
>
True
</property>
<property
name=
"pack_type"
>
end
</property>
<property
name=
"position"
>
0
</property>
</packing>
</child>
<child>
<object
class=
"GtkGrid"
id=
"grid1"
>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
False
</property>
<property
name=
"halign"
>
center
</property>
<property
name=
"row_spacing"
>
6
</property>
<property
name=
"column_spacing"
>
12
</property>
<child>
<object
class=
"GtkLabel"
id=
"label1"
>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
False
</property>
<property
name=
"xalign"
>
1
</property>
<property
name=
"label"
translatable=
"yes"
>
Status:
</property>
</object>
<packing>
<property
name=
"left_attach"
>
0
</property>
<property
name=
"top_attach"
>
0
</property>
<property
name=
"width"
>
1
</property>
<property
name=
"height"
>
1
</property>
</packing>
</child>
<child>
<object
class=
"GtkLabel"
id=
"label2"
>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
False
</property>
<property
name=
"xalign"
>
1
</property>
<property
name=
"label"
translatable=
"yes"
>
Progress:
</property>
</object>
<packing>
<property
name=
"left_attach"
>
0
</property>
<property
name=
"top_attach"
>
1
</property>
<property
name=
"width"
>
1
</property>
<property
name=
"height"
>
1
</property>
</packing>
</child>
<child>
<object
class=
"GtkLabel"
id=
"label3"
>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
False
</property>
<property
name=
"xalign"
>
0
</property>
<property
name=
"label"
translatable=
"yes"
>
Creating documents...
</property>
</object>
<packing>
<property
name=
"left_attach"
>
1
</property>
<property
name=
"top_attach"
>
0
</property>
<property
name=
"width"
>
1
</property>
<property
name=
"height"
>
1
</property>
</packing>
</child>
<child>
<object
class=
"GtkLabel"
id=
"progress"
>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
False
</property>
<property
name=
"xalign"
>
0
</property>
<property
name=
"label"
translatable=
"yes"
>
%X of %Y
</property>
</object>
<packing>
<property
name=
"left_attach"
>
1
</property>
<property
name=
"top_attach"
>
1
</property>
<property
name=
"width"
>
1
</property>
<property
name=
"height"
>
1
</property>
</packing>
</child>
</object>
<packing>
<property
name=
"expand"
>
False
</property>
<property
name=
"fill"
>
True
</property>
<property
name=
"position"
>
1
</property>
</packing>
</child>
</object>
</child>
<action-widgets>
<action-widget
response=
"0"
>
cancel
</action-widget>
</action-widgets>
</object>
</interface>
unusedcode.easy
Dosyayı görüntüle @
d49d0139
BigInt::BigInt(unsigned int)
CalcUnoApiTest::CalcUnoApiTest(rtl::OUString const&)
DocxSdrExport::isParagraphSdtOpen()
GDriveDocument::GDriveDocument(GDriveSession*)
GDriveFolder::GDriveFolder(GDriveSession*)
GDriveProperty::GDriveProperty()
...
...
@@ -212,8 +211,4 @@ std::__cxx1998::vector<rtl::Reference<oox::xls::(anonymous namespace)::WorkerThr
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>)
svgio::svgreader::SvgDocument::removeSvgStyleAttributesFromMapper(rtl::OUString const&)
svl::GridPrinter::clear()
svl::GridPrinter::resize(unsigned long, unsigned long)
svt::CheckInvariants(void const*)
svt::table::UnoControlTableModel::checkInvariants() const
vcl::MapChar(vcl::_TrueTypeFont*, unsigned short, bool)
writerfilter/source/dmapper/WrapPolygonHandler.cxx
Dosyayı görüntüle @
d49d0139
...
...
@@ -66,11 +66,6 @@ WrapPolygon::Points_t::iterator WrapPolygon::end()
return
mPoints
.
end
();
}
size_t
WrapPolygon
::
size
()
const
{
return
mPoints
.
size
();
}
WrapPolygon
::
Pointer_t
WrapPolygon
::
move
(
const
awt
::
Point
&
rPoint
)
{
WrapPolygon
::
Pointer_t
pResult
(
new
WrapPolygon
);
...
...
writerfilter/source/dmapper/WrapPolygonHandler.hxx
Dosyayı görüntüle @
d49d0139
...
...
@@ -49,8 +49,6 @@ public:
Points_t
::
iterator
begin
();
Points_t
::
iterator
end
();
size_t
size
()
const
;
WrapPolygon
::
Pointer_t
move
(
const
css
::
awt
::
Point
&
rMove
);
WrapPolygon
::
Pointer_t
scale
(
const
Fraction
&
rFractionX
,
const
Fraction
&
rFractionY
);
WrapPolygon
::
Pointer_t
correctWordWrapPolygon
(
const
css
::
awt
::
Size
&
rSrcSize
);
...
...
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