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
1ad66742
Kaydet (Commit)
1ad66742
authored
Kas 21, 2000
tarafından
Oliver Specht
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#80521# prevent creation of illegal strings
üst
c635ad90
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
7 deletions
+12
-7
select.cxx
sw/source/ui/wrtsh/select.cxx
+12
-7
No files found.
sw/source/ui/wrtsh/select.cxx
Dosyayı görüntüle @
1ad66742
...
...
@@ -2,9 +2,9 @@
*
* $RCSfile: select.cxx,v $
*
* $Revision: 1.
3
$
* $Revision: 1.
4
$
*
* last change: $Author:
jp $ $Date: 2000-11-20 09:25:03
$
* last change: $Author:
os $ $Date: 2000-11-21 08:49:57
$
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
...
...
@@ -850,12 +850,14 @@ int SwWrtShell::IntelligentCut(int nSelection, BOOL bCut)
// wenn das erste und das letzte Zeichen kein Wortzeichen ist,
// ist kein Wort selektiert.
if
(
!
rCC
.
isLetterNumeric
(
(
sTxt
=
GetChar
(
FALSE
)),
0
)
||
!
rCC
.
isLetterNumeric
(
(
sTxt
=
GetChar
(
TRUE
,
-
1
)),
0
)
)
sal_Unicode
cPrev
=
GetChar
(
FALSE
);
sal_Unicode
cNext
=
GetChar
(
TRUE
,
-
1
);
if
(
!
cPrev
||
!
cNext
||
!
rCC
.
isLetterNumeric
(
(
sTxt
=
cPrev
),
0
)
||
!
rCC
.
isLetterNumeric
(
(
sTxt
=
cNext
),
0
)
)
return
NO_WORD
;
c
onst
sal_Unicode
c
Prev
=
GetChar
(
FALSE
,
-
1
);
c
onst
sal_Unicode
c
Next
=
GetChar
(
TRUE
);
cPrev
=
GetChar
(
FALSE
,
-
1
);
cNext
=
GetChar
(
TRUE
);
int
cWord
=
NO_WORD
;
// ist ein Wort selektiert?
...
...
@@ -961,11 +963,14 @@ long SwWrtShell::MoveText(const Point *pPt,BOOL)
Source Code Control System - Header
$Header: /zpool/svn/migration/cvs_rep_09_09_08/code/sw/source/ui/wrtsh/select.cxx,v 1.
3 2000-11-20 09:25:03 jp
Exp $
$Header: /zpool/svn/migration/cvs_rep_09_09_08/code/sw/source/ui/wrtsh/select.cxx,v 1.
4 2000-11-21 08:49:57 os
Exp $
Source Code Control System - Update
$Log: not supported by cvs2svn $
Revision 1.3 2000/11/20 09:25:03 jp
must change: SearchText->TextSearch and use namespace
Revision 1.2 2000/10/25 15:36:07 jp
use CharClass/BreakIt instead of old WordSelection
...
...
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