summaryrefslogtreecommitdiff
path: root/library
Unidiff
Diffstat (limited to 'library') (more/less context) (show whitespace changes)
-rw-r--r--library/global.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/library/global.cpp b/library/global.cpp
index f7a0767..7bdd0b1 100644
--- a/library/global.cpp
+++ b/library/global.cpp
@@ -244,3 +244,3 @@ const QDawg& Global::fixedDawg()
244 fixed_dawg->createFromWords(&in); 244 fixed_dawg->createFromWords(&in);
245 dawgfile.open(IO_WriteOnly); 245 if (dawgfile.open(IO_WriteOnly))
246 fixed_dawg->write(&dawgfile); 246 fixed_dawg->write(&dawgfile);
@@ -248,6 +248,5 @@ const QDawg& Global::fixedDawg()
248 } 248 }
249 } else { 249 } else
250 fixed_dawg->readFile(dawgfilename); 250 fixed_dawg->readFile(dawgfilename);
251 } 251 }
252 }
253 252