diff options
Diffstat (limited to 'afdnotebook.cc')
-rw-r--r-- | afdnotebook.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/afdnotebook.cc b/afdnotebook.cc index eaff949..c4a4964 100644 --- a/afdnotebook.cc +++ b/afdnotebook.cc @@ -358,7 +358,7 @@ bool AfdNotebook::findPenData() qDebug() << " stroke data" << strokeFile; if (strokeFile.length() != 25) { - qWarning() << "Invalid stroke filename format" << strokeFile << endl; + qWarning() << "Invalid stroke filename format" << strokeFile; continue; } @@ -370,7 +370,7 @@ bool AfdNotebook::findPenData() if (ok) stroke.end = Smartpen::fromPenTime(strokeFile.mid(13, 8).toLongLong(&ok, 16) * 1000ULL); if (!ok) { - qWarning() << "Invalid stroke filename format" << strokeFile << endl; + qWarning() << "Invalid stroke filename format" << strokeFile; continue; } |