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
2ba10522
Kaydet (Commit)
2ba10522
authored
Eyl 03, 2013
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
convert include/svx/SpellDialogChildWindow.hxx from String to OUString
Change-Id: I6fe9e996b67dc689f4fc2abc1cf63cb4af39084f
üst
a5c93041
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
5 deletions
+5
-5
SpellDialogChildWindow.hxx
include/svx/SpellDialogChildWindow.hxx
+1
-1
SpellDialogChildWindow.cxx
svx/source/dialog/SpellDialogChildWindow.cxx
+2
-2
SwSpellDialogChildWindow.cxx
sw/source/ui/dialog/SwSpellDialogChildWindow.cxx
+1
-1
SwSpellDialogChildWindow.hxx
sw/source/ui/inc/SwSpellDialogChildWindow.hxx
+1
-1
No files found.
include/svx/SpellDialogChildWindow.hxx
Dosyayı görüntüle @
2ba10522
...
@@ -79,7 +79,7 @@ protected:
...
@@ -79,7 +79,7 @@ protected:
virtual
bool
HasAutoCorrection
();
virtual
bool
HasAutoCorrection
();
/** This method adds a word pair to the AutoCorrection - if available
/** This method adds a word pair to the AutoCorrection - if available
*/
*/
virtual
void
AddAutoCorrection
(
const
String
&
rOld
,
const
String
&
rNew
,
LanguageType
eLanguage
);
virtual
void
AddAutoCorrection
(
const
OUString
&
rOld
,
const
OU
String
&
rNew
,
LanguageType
eLanguage
);
/** Return the sfx bindings for this child window. They are
/** Return the sfx bindings for this child window. They are
retrieved from the dialog so they do not have to be stored in
retrieved from the dialog so they do not have to be stored in
this class as well. The bindings may be necessary to be used
this class as well. The bindings may be necessary to be used
...
...
svx/source/dialog/SpellDialogChildWindow.cxx
Dosyayı görüntüle @
2ba10522
...
@@ -66,8 +66,8 @@ bool SpellDialogChildWindow::HasAutoCorrection()
...
@@ -66,8 +66,8 @@ bool SpellDialogChildWindow::HasAutoCorrection()
}
}
void
SpellDialogChildWindow
::
AddAutoCorrection
(
void
SpellDialogChildWindow
::
AddAutoCorrection
(
const
String
&
/*rOld*/
,
const
OU
String
&
/*rOld*/
,
const
String
&
/*rNew*/
,
const
OU
String
&
/*rNew*/
,
LanguageType
/*eLanguage*/
)
LanguageType
/*eLanguage*/
)
{
{
OSL_FAIL
(
"AutoCorrection should have been overloaded - if available"
);
OSL_FAIL
(
"AutoCorrection should have been overloaded - if available"
);
...
...
sw/source/ui/dialog/SwSpellDialogChildWindow.cxx
Dosyayı görüntüle @
2ba10522
...
@@ -467,7 +467,7 @@ void SwSpellDialogChildWindow::ApplyChangedSentence(const svx::SpellPortions& rC
...
@@ -467,7 +467,7 @@ void SwSpellDialogChildWindow::ApplyChangedSentence(const svx::SpellPortions& rC
}
}
void
SwSpellDialogChildWindow
::
AddAutoCorrection
(
void
SwSpellDialogChildWindow
::
AddAutoCorrection
(
const
String
&
rOld
,
const
String
&
rNew
,
LanguageType
eLanguage
)
const
OUString
&
rOld
,
const
OU
String
&
rNew
,
LanguageType
eLanguage
)
{
{
SvxAutoCorrect
*
pACorr
=
SvxAutoCorrCfg
::
Get
().
GetAutoCorrect
();
SvxAutoCorrect
*
pACorr
=
SvxAutoCorrCfg
::
Get
().
GetAutoCorrect
();
pACorr
->
PutText
(
rOld
,
rNew
,
eLanguage
);
pACorr
->
PutText
(
rOld
,
rNew
,
eLanguage
);
...
...
sw/source/ui/inc/SwSpellDialogChildWindow.hxx
Dosyayı görüntüle @
2ba10522
...
@@ -40,7 +40,7 @@ class SwSpellDialogChildWindow
...
@@ -40,7 +40,7 @@ class SwSpellDialogChildWindow
protected
:
protected
:
virtual
svx
::
SpellPortions
GetNextWrongSentence
(
bool
bRecheck
);
virtual
svx
::
SpellPortions
GetNextWrongSentence
(
bool
bRecheck
);
virtual
void
ApplyChangedSentence
(
const
svx
::
SpellPortions
&
rChanged
,
bool
bRecheck
);
virtual
void
ApplyChangedSentence
(
const
svx
::
SpellPortions
&
rChanged
,
bool
bRecheck
);
virtual
void
AddAutoCorrection
(
const
String
&
rOld
,
const
String
&
rNew
,
LanguageType
eLanguage
);
virtual
void
AddAutoCorrection
(
const
OUString
&
rOld
,
const
OU
String
&
rNew
,
LanguageType
eLanguage
);
virtual
bool
HasAutoCorrection
();
virtual
bool
HasAutoCorrection
();
virtual
bool
HasGrammarChecking
();
virtual
bool
HasGrammarChecking
();
virtual
bool
IsGrammarChecking
();
virtual
bool
IsGrammarChecking
();
...
...
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