summaryrefslogtreecommitdiffstats
path: root/src/translators/bibtexexporter.cpp
diff options
context:
space:
mode:
authorDarrell Anderson <[email protected]>2012-04-13 02:53:12 -0500
committerDarrell Anderson <[email protected]>2012-04-13 02:53:12 -0500
commit80056d7ae2cbde97eb23dcf37307a6f3f8a29bdb (patch)
tree0d9335b5519422237cd81752ce2da4c19443f89d /src/translators/bibtexexporter.cpp
parent1b40827812adaf9476578406766d62dae7adf1d3 (diff)
downloadtellico-80056d7ae2cbde97eb23dcf37307a6f3f8a29bdb.tar.gz
tellico-80056d7ae2cbde97eb23dcf37307a6f3f8a29bdb.zip
Fix inadvertent "TQ" changes.
Diffstat (limited to 'src/translators/bibtexexporter.cpp')
-rw-r--r--src/translators/bibtexexporter.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/translators/bibtexexporter.cpp b/src/translators/bibtexexporter.cpp
index 7aca156..f987815 100644
--- a/src/translators/bibtexexporter.cpp
+++ b/src/translators/bibtexexporter.cpp
@@ -244,7 +244,7 @@ void BibtexExporter::readOptions(KConfig* config_) {
if(group.readBoolEntry("Use Braces", true)) {
BibtexHandler::s_quoteStyle = BibtexHandler::BRACES;
} else {
- BibtexHandler::s_quoteStyle = BibtexHandler::TQUOTES;
+ BibtexHandler::s_quoteStyle = BibtexHandler::QUOTES;
}
}
@@ -262,7 +262,7 @@ void BibtexExporter::saveOptions(KConfig* config_) {
if(useBraces) {
BibtexHandler::s_quoteStyle = BibtexHandler::BRACES;
} else {
- BibtexHandler::s_quoteStyle = BibtexHandler::TQUOTES;
+ BibtexHandler::s_quoteStyle = BibtexHandler::QUOTES;
}
}