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
463b1b56
Kaydet (Commit)
463b1b56
authored
Eyl 10, 2011
tarafından
Kohei Yoshida
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Allow paste when the dest range is a multiple of the source range.
üst
f7d29b44
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
viewfun3.cxx
sc/source/ui/view/viewfun3.cxx
+5
-2
No files found.
sc/source/ui/view/viewfun3.cxx
Dosyayı görüntüle @
463b1b56
...
...
@@ -1753,11 +1753,14 @@ bool ScViewFunc::PasteFromClipToMultiRanges(
}
}
// Destination range must be an exact multiple of the source range.
SCROW
nRows
=
aTest
.
aEnd
.
Row
()
-
aTest
.
aStart
.
Row
()
+
1
;
SCCOL
nCols
=
aTest
.
aEnd
.
Col
()
-
aTest
.
aStart
.
Col
()
+
1
;
if
(
nRows
!=
nRowSize
||
nCols
!=
nColSize
)
SCROW
nRowTest
=
(
nRows
/
nRowSize
)
*
nRowSize
;
SCCOL
nColTest
=
(
nCols
/
nColSize
)
*
nColSize
;
if
(
nRows
!=
nRowTest
||
nCols
!=
nColTest
)
{
//
Source and destination sizes don't match.
Bail out.
//
Destination range is not a multiple of the source range.
Bail out.
ErrorMessage
(
STR_MSSG_PASTEFROMCLIP_0
);
return
false
;
}
...
...
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