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
1b082cdf
Kaydet (Commit)
1b082cdf
authored
Eyl 08, 2015
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Remove unused function param
Change-Id: Iab33c8008e07c4f17482dc3a8e4d15e38dc32b4e
üst
5bac7853
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
12 deletions
+4
-12
tablemodel.hxx
include/svtools/table/tablemodel.hxx
+1
-7
tablecontrol_impl.cxx
svtools/source/table/tablecontrol_impl.cxx
+1
-3
tablecontrol_impl.hxx
svtools/source/table/tablecontrol_impl.hxx
+1
-1
unocontroltablemodel.cxx
svtools/source/uno/unocontroltablemodel.cxx
+1
-1
No files found.
include/svtools/table/tablemodel.hxx
Dosyayı görüntüle @
1b082cdf
...
...
@@ -105,14 +105,8 @@ namespace svt { namespace table
/** notifies the listener that one or more columns have been inserted into
the table
@param first
the index of the first newly inserted row
@param last
the index of the last newly inserted row. Must not be smaller
than ->first
*/
virtual
void
columnInserted
(
ColPos
const
i_colIndex
)
=
0
;
virtual
void
columnInserted
()
=
0
;
/** notifies the listener that one or more columns have been removed from
the table
...
...
svtools/source/table/tablecontrol_impl.cxx
Dosyayı görüntüle @
1b082cdf
...
...
@@ -425,14 +425,12 @@ namespace svt { namespace table
}
void
TableControl_Impl
::
columnInserted
(
ColPos
const
i_colIndex
)
void
TableControl_Impl
::
columnInserted
()
{
m_nColumnCount
=
m_pModel
->
getColumnCount
();
impl_ni_relayout
();
m_rAntiImpl
.
Invalidate
();
OSL_UNUSED
(
i_colIndex
);
}
...
...
svtools/source/table/tablecontrol_impl.hxx
Dosyayı görüntüle @
1b082cdf
...
...
@@ -298,7 +298,7 @@ namespace svt { namespace table
// ITableModelListener
virtual
void
rowsInserted
(
RowPos
first
,
RowPos
last
)
SAL_OVERRIDE
;
virtual
void
rowsRemoved
(
RowPos
first
,
RowPos
last
)
SAL_OVERRIDE
;
virtual
void
columnInserted
(
ColPos
const
i_colIndex
)
SAL_OVERRIDE
;
virtual
void
columnInserted
()
SAL_OVERRIDE
;
virtual
void
columnRemoved
(
ColPos
const
i_colIndex
)
SAL_OVERRIDE
;
virtual
void
allColumnsRemoved
()
SAL_OVERRIDE
;
virtual
void
cellsUpdated
(
ColPos
const
i_firstCol
,
ColPos
i_lastCol
,
RowPos
const
i_firstRow
,
RowPos
const
i_lastRow
)
SAL_OVERRIDE
;
...
...
svtools/source/uno/unocontroltablemodel.cxx
Dosyayı görüntüle @
1b082cdf
...
...
@@ -238,7 +238,7 @@ namespace svt { namespace table
++
loop
)
{
(
*
loop
)
->
columnInserted
(
i_position
);
(
*
loop
)
->
columnInserted
();
}
}
...
...
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