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
0727c09e
Kaydet (Commit)
0727c09e
authored
May 13, 2014
tarafından
Matúš Kukan
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
BrowseBoxCheckInvariants appears to be unused [loplugin:unreffun]
Change-Id: Ie6c546ee085b20bd3eb39cdfb7b38394c0a35b67
üst
9d48e8fd
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
35 deletions
+0
-35
brwbox.hxx
include/svtools/brwbox.hxx
+0
-4
brwbox1.cxx
svtools/source/brwbox/brwbox1.cxx
+0
-23
brwbox2.cxx
svtools/source/brwbox/brwbox2.cxx
+0
-8
No files found.
include/svtools/brwbox.hxx
Dosyayı görüntüle @
0727c09e
...
@@ -213,10 +213,6 @@ class SVT_DLLPUBLIC BrowseBox
...
@@ -213,10 +213,6 @@ class SVT_DLLPUBLIC BrowseBox
friend
class
BrowserDataWin
;
friend
class
BrowserDataWin
;
friend
class
::
svt
::
BrowseBoxImpl
;
friend
class
::
svt
::
BrowseBoxImpl
;
#ifdef DBG_UTIL
friend
const
char
*
BrowseBoxCheckInvariants
(
const
void
*
pVoid
);
#endif
public
:
public
:
static
const
sal_uInt16
HandleColumnId
=
0
;
static
const
sal_uInt16
HandleColumnId
=
0
;
...
...
svtools/source/brwbox/brwbox1.cxx
Dosyayı görüntüle @
0727c09e
...
@@ -33,8 +33,6 @@
...
@@ -33,8 +33,6 @@
#include "brwimpl.hxx"
#include "brwimpl.hxx"
extern
const
char
*
BrowseBoxCheckInvariants
(
const
void
*
pVoid
);
#define SCROLL_FLAGS (SCROLL_CLIP | SCROLL_NOCHILDREN)
#define SCROLL_FLAGS (SCROLL_CLIP | SCROLL_NOCHILDREN)
#define getDataWindow() ((BrowserDataWin*)pDataWin)
#define getDataWindow() ((BrowserDataWin*)pDataWin)
...
@@ -2391,27 +2389,6 @@ void BrowseBox::SetHeaderBar( BrowserHeader* pHeaderBar )
...
@@ -2391,27 +2389,6 @@ void BrowseBox::SetHeaderBar( BrowserHeader* pHeaderBar )
(
(
BrowserDataWin
*
)
pDataWin
)
->
pHeaderBar
->
SetStartDragHdl
(
LINK
(
this
,
BrowseBox
,
StartDragHdl
)
);
(
(
BrowserDataWin
*
)
pDataWin
)
->
pHeaderBar
->
SetStartDragHdl
(
LINK
(
this
,
BrowseBox
,
StartDragHdl
)
);
}
}
#ifdef DBG_UTIL
const
char
*
BrowseBoxCheckInvariants
(
const
void
*
pVoid
)
{
const
BrowseBox
*
p
=
(
const
BrowseBox
*
)
pVoid
;
if
(
p
->
nRowCount
<
0
)
return
"BrowseBox: nRowCount < 0"
;
if
(
p
->
nTopRow
<
0
)
return
"BrowseBox: nTopRow < 0"
;
if
(
p
->
nTopRow
>=
p
->
nRowCount
&&
p
->
nRowCount
!=
0
)
return
"BrowseBox: nTopRow >= nRowCount && nRowCount != 0"
;
if
(
p
->
nCurRow
<
-
1
)
return
"BrowseBox: nCurRow < -1"
;
if
(
p
->
nCurRow
>
p
->
nRowCount
)
return
"BrowseBox: nCurRow > nRowCount"
;
// Sadly not always the case when editing:
//if (p->nCurRow < 0 && p->nRowCount != 0) return "nCurRow < 0 && nRowCount != 0";
//if (p->nCurRow >= p->nRowCount && p->nRowCount != 0) return "nCurRow >= nRowCount && nRowCount != 0";
return
NULL
;
}
#endif
long
BrowseBox
::
GetTitleHeight
()
const
long
BrowseBox
::
GetTitleHeight
()
const
{
{
long
nHeight
;
long
nHeight
;
...
...
svtools/source/brwbox/brwbox2.cxx
Dosyayı görüntüle @
0727c09e
...
@@ -33,14 +33,6 @@ using namespace ::com::sun::star::datatransfer;
...
@@ -33,14 +33,6 @@ using namespace ::com::sun::star::datatransfer;
extern
const
char
*
BrowseBoxCheckInvariants
(
const
void
*
pVoid
);
void
BrowseBox
::
StartDrag
(
sal_Int8
/* _nAction */
,
const
Point
&
/* _rPosPixel */
)
void
BrowseBox
::
StartDrag
(
sal_Int8
/* _nAction */
,
const
Point
&
/* _rPosPixel */
)
{
{
// not interested in this event
// not interested in this event
...
...
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