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
1a777329
Kaydet (Commit)
1a777329
authored
Agu 30, 2011
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
regenerate list
üst
8fef2fef
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
13 additions
and
71 deletions
+13
-71
xfcell.cxx
lotuswordpro/source/filter/xfilter/xfcell.cxx
+0
-16
xfcell.hxx
lotuswordpro/source/filter/xfilter/xfcell.hxx
+0
-5
xflist.cxx
lotuswordpro/source/filter/xfilter/xflist.cxx
+0
-8
xflist.hxx
lotuswordpro/source/filter/xfilter/xflist.hxx
+0
-5
xftextcontent.cxx
lotuswordpro/source/filter/xfilter/xftextcontent.cxx
+0
-5
xftextcontent.hxx
lotuswordpro/source/filter/xfilter/xftextcontent.hxx
+0
-6
AccessibleDrawDocumentView.cxx
sd/source/ui/accessibility/AccessibleDrawDocumentView.cxx
+10
-13
AccessibleOutlineView.cxx
sd/source/ui/accessibility/AccessibleOutlineView.cxx
+2
-2
AccessibleSlideSorterObject.cxx
sd/source/ui/accessibility/AccessibleSlideSorterObject.cxx
+0
-4
AccessibleSlideSorterView.cxx
sd/source/ui/accessibility/AccessibleSlideSorterView.cxx
+0
-3
AccessibleViewForwarder.cxx
sd/source/ui/accessibility/AccessibleViewForwarder.cxx
+0
-3
SdShapeTypes.cxx
sd/source/ui/accessibility/SdShapeTypes.cxx
+1
-1
No files found.
lotuswordpro/source/filter/xfilter/xfcell.cxx
Dosyayı görüntüle @
1a777329
...
...
@@ -169,22 +169,6 @@ void XFCell::SetValue(rtl::OUString value)
{
m_eValueType
=
enumXFValueTypeFloat
;
m_strValue
=
value
;
//Reset();
//XFParagraph *pPara = new XFParagraph();
//pPara->Add(m_strValue);
//XFContentContainer::Add(pPara);
}
void
XFCell
::
SetPercent
(
rtl
::
OUString
percent
)
{
m_eValueType
=
enumXFValueTypePercentage
;
m_strValue
=
percent
;
Reset
();
XFParagraph
*
pPara
=
new
XFParagraph
();
pPara
->
Add
(
m_strValue
);
XFContentContainer
::
Add
(
pPara
);
}
rtl
::
OUString
XFCell
::
GetCellName
()
...
...
lotuswordpro/source/filter/xfilter/xfcell.hxx
Dosyayı görüntüle @
1a777329
...
...
@@ -110,11 +110,6 @@ public:
*/
void
SetValue
(
rtl
::
OUString
value
);
/**
* @descr Set cell as a percent value with value percent.
*/
void
SetPercent
(
rtl
::
OUString
percent
);
/**
* @descr Set cell formula.
*/
...
...
lotuswordpro/source/filter/xfilter/xflist.cxx
Dosyayı görüntüle @
1a777329
...
...
@@ -73,14 +73,6 @@ XFList::~XFList()
{
}
void
XFList
::
AddItem
(
XFListItem
*
pItem
)
{
assert
(
pItem
);
assert
(
pItem
->
GetContentType
()
!=
enumXFContentUnknown
);
Add
(
pItem
);
}
void
XFList
::
ToXml
(
IXFStream
*
pStrm
)
{
IXFAttrList
*
pAttrList
=
pStrm
->
GetAttrList
();
...
...
lotuswordpro/source/filter/xfilter/xflist.hxx
Dosyayı görüntüle @
1a777329
...
...
@@ -87,11 +87,6 @@ public:
*/
void
SetContinueNumber
(
sal_Bool
bContinueNumber
=
sal_False
);
/**
* @descr Add a list item.
*/
void
AddItem
(
XFListItem
*
pItem
);
/**
* @descr Output list obejct.
*/
...
...
lotuswordpro/source/filter/xfilter/xftextcontent.cxx
Dosyayı görüntüle @
1a777329
...
...
@@ -78,11 +78,6 @@ void XFTextContent::SetText(const rtl::OUString& text)
m_strText
=
text
;
}
rtl
::
OUString
XFTextContent
::
GetText
()
{
return
m_strText
;
}
void
XFTextContent
::
ToXml
(
IXFStream
*
pStrm
)
{
// pStrm->Characters(m_strText);
...
...
lotuswordpro/source/filter/xfilter/xftextcontent.hxx
Dosyayı görüntüle @
1a777329
...
...
@@ -84,12 +84,6 @@ public:
*/
void
SetText
(
const
rtl
::
OUString
&
text
);
/**
* @descr return the content.
* @return text content.
*/
rtl
::
OUString
GetText
();
virtual
enumXFContent
GetContentType
();
virtual
void
ToXml
(
IXFStream
*
pStrm
);
...
...
sd/source/ui/accessibility/AccessibleDrawDocumentView.cxx
Dosyayı görüntüle @
1a777329
...
...
@@ -300,7 +300,7 @@ void SAL_CALL
AccessibleDocumentViewBase
::
propertyChange
(
rEventObject
);
OSL_TRACE
(
"AccessibleDrawDocumentView::propertyChange"
);
if
(
rEventObject
.
PropertyName
==
OUString
(
RTL_CONSTASCII_U
STRINGPARAM
(
"CurrentPage"
)))
if
(
rEventObject
.
PropertyName
.
equalsAsciiL
(
RTL_CONSTASCII_
STRINGPARAM
(
"CurrentPage"
)))
{
OSL_TRACE
(
" current page changed"
);
...
...
@@ -335,7 +335,7 @@ void SAL_CALL
else
OSL_TRACE
(
"View invalid"
);
}
else
if
(
rEventObject
.
PropertyName
==
OUString
(
RTL_CONSTASCII_U
STRINGPARAM
(
"VisibleArea"
)))
else
if
(
rEventObject
.
PropertyName
.
equalsAsciiL
(
RTL_CONSTASCII_
STRINGPARAM
(
"VisibleArea"
)))
{
OSL_TRACE
(
" visible area changed"
);
if
(
mpChildrenManager
!=
NULL
)
...
...
@@ -399,10 +399,10 @@ void SAL_CALL
{
uno
::
Sequence
<
::
rtl
::
OUString
>
aServices
(
xInfo
->
getSupportedServiceNames
()
);
OUString
sFirstService
=
aServices
[
0
];
if
(
sFirstService
==
OUString
(
RTL_CONSTASCII_U
STRINGPARAM
(
"com.sun.star.drawing.DrawingDocumentDrawView"
)))
if
(
sFirstService
.
equalsAsciiL
(
RTL_CONSTASCII_
STRINGPARAM
(
"com.sun.star.drawing.DrawingDocumentDrawView"
)))
{
if
(
aServices
.
getLength
()
>=
2
&&
aServices
[
1
]
==
OUString
(
RTL_CONSTASCII_U
STRINGPARAM
(
"com.sun.star.presentation.PresentationView"
)))
aServices
[
1
]
.
equalsAsciiL
(
RTL_CONSTASCII_
STRINGPARAM
(
"com.sun.star.presentation.PresentationView"
)))
{
SolarMutexGuard
aGuard
;
...
...
@@ -415,13 +415,13 @@ void SAL_CALL
sName
=
String
(
SdResId
(
SID_SD_A11Y_D_DRAWVIEW_N
)
);
}
}
else
if
(
sFirstService
==
OUString
(
RTL_CONSTASCII_U
STRINGPARAM
(
"com.sun.star.presentation.NotesView"
)))
else
if
(
sFirstService
.
equalsAsciiL
(
RTL_CONSTASCII_
STRINGPARAM
(
"com.sun.star.presentation.NotesView"
)))
{
SolarMutexGuard
aGuard
;
sName
=
String
(
SdResId
(
SID_SD_A11Y_I_NOTESVIEW_N
)
);
}
else
if
(
sFirstService
==
OUString
(
RTL_CONSTASCII_U
STRINGPARAM
(
"com.sun.star.presentation.HandoutView"
)))
else
if
(
sFirstService
.
equalsAsciiL
(
RTL_CONSTASCII_
STRINGPARAM
(
"com.sun.star.presentation.HandoutView"
)))
{
SolarMutexGuard
aGuard
;
...
...
@@ -456,10 +456,10 @@ void SAL_CALL
{
uno
::
Sequence
<
::
rtl
::
OUString
>
aServices
(
xInfo
->
getSupportedServiceNames
()
);
OUString
sFirstService
=
aServices
[
0
];
if
(
sFirstService
==
OUString
(
RTL_CONSTASCII_U
STRINGPARAM
(
"com.sun.star.drawing.DrawingDocumentDrawView"
)))
if
(
sFirstService
.
equalsAsciiL
(
RTL_CONSTASCII_
STRINGPARAM
(
"com.sun.star.drawing.DrawingDocumentDrawView"
)))
{
if
(
aServices
.
getLength
()
>=
2
&&
aServices
[
1
]
==
OUString
(
RTL_CONSTASCII_U
STRINGPARAM
(
"com.sun.star.presentation.PresentationView"
)))
aServices
[
1
]
.
equalsAsciiL
(
RTL_CONSTASCII_
STRINGPARAM
(
"com.sun.star.presentation.PresentationView"
)))
{
SolarMutexGuard
aGuard
;
...
...
@@ -472,13 +472,13 @@ void SAL_CALL
sDescription
=
String
(
SdResId
(
SID_SD_A11Y_D_DRAWVIEW_D
)
);
}
}
else
if
(
sFirstService
==
OUString
(
RTL_CONSTASCII_U
STRINGPARAM
(
"com.sun.star.presentation.NotesView"
)))
else
if
(
sFirstService
.
equalsAsciiL
(
RTL_CONSTASCII_
STRINGPARAM
(
"com.sun.star.presentation.NotesView"
)))
{
SolarMutexGuard
aGuard
;
sDescription
=
String
(
SdResId
(
SID_SD_A11Y_I_NOTESVIEW_D
)
);
}
else
if
(
sFirstService
==
OUString
(
RTL_CONSTASCII_U
STRINGPARAM
(
"com.sun.star.presentation.HandoutView"
)))
else
if
(
sFirstService
.
equalsAsciiL
(
RTL_CONSTASCII_
STRINGPARAM
(
"com.sun.star.presentation.HandoutView"
)))
{
SolarMutexGuard
aGuard
;
...
...
@@ -732,9 +732,6 @@ void AccessibleDrawDocumentView::UpdateAccessibleName (void)
SetAccessibleName
(
sNewName
,
AutomaticallyCreated
);
}
}
// end of namespace accessibility
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
sd/source/ui/accessibility/AccessibleOutlineView.cxx
Dosyayı görüntüle @
1a777329
...
...
@@ -227,14 +227,14 @@ void SAL_CALL
AccessibleDocumentViewBase
::
propertyChange
(
rEventObject
);
OSL_TRACE
(
"AccessibleOutlineView::propertyChange"
);
if
(
rEventObject
.
PropertyName
==
::
rtl
::
OUString
(
RTL_CONSTASCII_U
STRINGPARAM
(
"CurrentPage"
)))
if
(
rEventObject
.
PropertyName
.
equalsAsciiL
(
RTL_CONSTASCII_
STRINGPARAM
(
"CurrentPage"
)))
{
OSL_TRACE
(
" current page changed"
);
// The current page changed. Update the children accordingly.
UpdateChildren
();
}
else
if
(
rEventObject
.
PropertyName
==
::
rtl
::
OUString
(
RTL_CONSTASCII_U
STRINGPARAM
(
"VisibleArea"
)))
else
if
(
rEventObject
.
PropertyName
.
equalsAsciiL
(
RTL_CONSTASCII_
STRINGPARAM
(
"VisibleArea"
)))
{
OSL_TRACE
(
" visible area changed"
);
...
...
sd/source/ui/accessibility/AccessibleSlideSorterObject.cxx
Dosyayı görüntüle @
1a777329
...
...
@@ -567,9 +567,6 @@ sal_Bool AccessibleSlideSorterObject::IsDisposed (void)
return
(
rBHelper
.
bDisposed
||
rBHelper
.
bInDispose
);
}
SdPage
*
AccessibleSlideSorterObject
::
GetPage
(
void
)
const
{
::
sd
::
slidesorter
::
model
::
SharedPageDescriptor
pDescriptor
(
...
...
@@ -580,7 +577,6 @@ SdPage* AccessibleSlideSorterObject::GetPage (void) const
return
NULL
;
}
}
// end of namespace ::accessibility
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
sd/source/ui/accessibility/AccessibleSlideSorterView.cxx
Dosyayı görüntüle @
1a777329
...
...
@@ -1144,9 +1144,6 @@ IMPL_LINK(AccessibleSlideSorterView::Implementation, VisibilityChangeListener, v
return
1
;
}
}
// end of namespace ::accessibility
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
sd/source/ui/accessibility/AccessibleViewForwarder.cxx
Dosyayı görüntüle @
1a777329
...
...
@@ -151,9 +151,6 @@ Point AccessibleViewForwarder::PixelToLogic (const Point& rPoint) const
return
Point
();
}
Size
AccessibleViewForwarder
::
PixelToLogic
(
const
Size
&
rSize
)
const
{
OSL_ASSERT
(
mpView
!=
NULL
);
...
...
sd/source/ui/accessibility/SdShapeTypes.cxx
Dosyayı görüntüle @
1a777329
...
...
@@ -33,7 +33,7 @@
#include "AccessiblePresentationShape.hxx"
#include "AccessiblePresentationGraphicShape.hxx"
#include "AccessiblePresentationOLEShape.hxx"
#include <rtl/ustring.h>
#include <rtl/ustring.h
xx
>
namespace
accessibility
{
...
...
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