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
d99c1ecd
Kaydet (Commit)
d99c1ecd
authored
Ara 23, 2011
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
regenerate list under OSL_DEBUG_LEVEL=2
üst
30ec94d8
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
1 addition
and
50 deletions
+1
-50
drawshapesubsetting.cxx
slideshow/source/engine/shapes/drawshapesubsetting.cxx
+0
-5
drawshapesubsetting.hxx
slideshow/source/engine/shapes/drawshapesubsetting.hxx
+0
-3
helpopt.hxx
svtools/inc/svtools/helpopt.hxx
+0
-14
helpopt.cxx
svtools/source/config/helpopt.cxx
+0
-21
unusedcode.easy
unusedcode.easy
+0
-0
pdfwriter_impl.cxx
vcl/source/gdi/pdfwriter_impl.cxx
+1
-1
OOXMLParserState.cxx
writerfilter/source/ooxml/OOXMLParserState.cxx
+0
-5
OOXMLParserState.hxx
writerfilter/source/ooxml/OOXMLParserState.hxx
+0
-1
No files found.
slideshow/source/engine/shapes/drawshapesubsetting.cxx
Dosyayı görüntüle @
d99c1ecd
...
...
@@ -317,11 +317,6 @@ namespace slideshow
return
maSubset
;
}
bool
DrawShapeSubsetting
::
hasSubsetShapes
()
const
{
return
!
maSubsetShapes
.
empty
();
}
AttributableShapeSharedPtr
DrawShapeSubsetting
::
getSubsetShape
(
const
DocTreeNode
&
rTreeNode
)
const
{
RTL_LOGFILE_CONTEXT
(
aLog
,
"::presentation::internal::DrawShapeSubsetting::getSubsetShape()"
);
...
...
slideshow/source/engine/shapes/drawshapesubsetting.hxx
Dosyayı görüntüle @
d99c1ecd
...
...
@@ -111,9 +111,6 @@ namespace slideshow
/// Return subset node for this shape
DocTreeNode
getSubsetNode
()
const
;
/// Return true, if any child subset shapes exist
bool
hasSubsetShapes
()
const
;
/// Get subset shape for given node, if any
AttributableShapeSharedPtr
getSubsetShape
(
const
DocTreeNode
&
rTreeNode
)
const
;
...
...
svtools/inc/svtools/helpopt.hxx
Dosyayı görüntüle @
d99c1ecd
...
...
@@ -62,20 +62,6 @@ public:
const
String
&
GetHelpStyleSheet
()
const
;
void
SetHelpStyleSheet
(
const
String
&
rStyleSheet
);
/** retrieves the help agent's ignore counter for the given URL.
<p> If the counter returned 0, the agent should silently drop any requests for this URL.<br/>
If the counter is greater 0, the agent should display the URL and, if the user ignores it,
decrement the counter by 1.
</p>
*/
sal_Int32
getAgentIgnoreURLCounter
(
const
::
rtl
::
OUString
&
_rURL
);
/** decrements the help agent's ignore counter for the given URL
@see getAgentIgnoreURLCounter
*/
void
decAgentIgnoreURLCounter
(
const
::
rtl
::
OUString
&
_rURL
);
/** resets the help agent's ignore counter for the given URL
*/
void
resetAgentIgnoreURLCounter
(
const
::
rtl
::
OUString
&
_rURL
);
/** resets the help agent's ignore counter for all URL's
*/
void
resetAgentIgnoreURLCounter
();
...
...
svtools/source/config/helpopt.cxx
Dosyayı görüntüle @
d99c1ecd
...
...
@@ -674,27 +674,6 @@ sal_Bool SvtHelpOptions::IsHelpAgentAutoStartMode() const
// -----------------------------------------------------------------------
sal_Int32
SvtHelpOptions
::
getAgentIgnoreURLCounter
(
const
::
rtl
::
OUString
&
_rURL
)
{
return
pImp
->
getAgentIgnoreURLCounter
(
_rURL
);
}
// -----------------------------------------------------------------------
void
SvtHelpOptions
::
decAgentIgnoreURLCounter
(
const
::
rtl
::
OUString
&
_rURL
)
{
pImp
->
decAgentIgnoreURLCounter
(
_rURL
);
}
// -----------------------------------------------------------------------
void
SvtHelpOptions
::
resetAgentIgnoreURLCounter
(
const
::
rtl
::
OUString
&
_rURL
)
{
pImp
->
resetAgentIgnoreURLCounter
(
_rURL
);
}
// -----------------------------------------------------------------------
void
SvtHelpOptions
::
resetAgentIgnoreURLCounter
()
{
pImp
->
resetAgentIgnoreURLCounter
();
...
...
unusedcode.easy
Dosyayı görüntüle @
d99c1ecd
This diff is collapsed.
Click to expand it.
vcl/source/gdi/pdfwriter_impl.cxx
Dosyayı görüntüle @
d99c1ecd
...
...
@@ -90,7 +90,7 @@ using ::rtl::OUStringHash;
using ::rtl::OStringBuffer;
using ::rtl::OUStringBuffer;
#if (OSL_DEBUG_LEVEL <
2
)
#if (OSL_DEBUG_LEVEL <
3
)
#define COMPRESS_PAGES
#else
#define DEBUG_DISABLE_PDFCOMPRESSION // also do not compress streams
...
...
writerfilter/source/ooxml/OOXMLParserState.cxx
Dosyayı görüntüle @
d99c1ecd
...
...
@@ -276,11 +276,6 @@ void OOXMLParserState::incContextCount()
}
#if OSL_DEBUG_LEVEL > 1
unsigned
int
OOXMLParserState
::
getContextCount
()
const
{
return
mnContexts
;
}
void
OOXMLParserState
::
dumpXml
(
const
TagLogger
::
Pointer_t
&
pLogger
)
{
pLogger
->
startElement
(
"parserstate"
);
...
...
writerfilter/source/ooxml/OOXMLParserState.hxx
Dosyayı görüntüle @
d99c1ecd
...
...
@@ -111,7 +111,6 @@ public:
#if OSL_DEBUG_LEVEL > 1
public
:
unsigned
int
getContextCount
()
const
;
void
dumpXml
(
const
TagLogger
::
Pointer_t
&
pLogger
);
XPathLogger
&
getXPathLogger
();
#endif
...
...
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