diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-26 13:10:41 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-26 13:10:41 -0600 |
commit | 7422cac1a18dca897d3830a267eb91683d05a95b (patch) | |
tree | 2ba309f49b47a5fbb0b226801b224c2532b7ab1a /kspread/kspread_doc.cc | |
parent | 3fe437def8063926892bddf2dcc733861308836d (diff) | |
download | koffice-7422cac1a18dca897d3830a267eb91683d05a95b.tar.gz koffice-7422cac1a18dca897d3830a267eb91683d05a95b.zip |
Rename a number of libraries and executables to avoid conflicts with KDE4
Diffstat (limited to 'kspread/kspread_doc.cc')
-rw-r--r-- | kspread/kspread_doc.cc | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/kspread/kspread_doc.cc b/kspread/kspread_doc.cc index ad28bb78..f3c78e9f 100644 --- a/kspread/kspread_doc.cc +++ b/kspread/kspread_doc.cc @@ -1459,17 +1459,17 @@ MethodOfCalc Doc::getTypeOfCalc() const return d->calcMethod; } -void Doc::setKSpellConfig(KSpellConfig _kspell) +void Doc::setKSpellConfig(KSpellConfig _tdespell) { if (d->spellConfig == 0 ) d->spellConfig = new KSpellConfig(); - d->spellConfig->setNoRootAffix(_kspell.noRootAffix ()); - d->spellConfig->setRunTogether(_kspell.runTogether ()); - d->spellConfig->setDictionary(_kspell.dictionary ()); - d->spellConfig->setDictFromList(_kspell.dictFromList()); - d->spellConfig->setEncoding(_kspell.encoding()); - d->spellConfig->setClient(_kspell.client()); + d->spellConfig->setNoRootAffix(_tdespell.noRootAffix ()); + d->spellConfig->setRunTogether(_tdespell.runTogether ()); + d->spellConfig->setDictionary(_tdespell.dictionary ()); + d->spellConfig->setDictFromList(_tdespell.dictFromList()); + d->spellConfig->setEncoding(_tdespell.encoding()); + d->spellConfig->setClient(_tdespell.client()); } KSpellConfig * Doc::getKSpellConfig() |