mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-10-10 08:33:39 +02:00
2016-07-27 Fred Gleason <fredg@paravelsystems.com>
* Fixed a regression in 'lib/rdsvc.cpp' that broke log data imports for data lines with leading whitespace.
This commit is contained in:
@@ -15424,3 +15424,6 @@
|
||||
* Fixed a typo in 'docs/docbook/rdclilogedit.xml'.
|
||||
2016-07-27 Fred Gleason <fredg@paravelsystems.com>
|
||||
* Removed dead code from 'lib/rdsvc.cpp'.
|
||||
2016-07-27 Fred Gleason <fredg@paravelsystems.com>
|
||||
* Fixed a regression in 'lib/rdsvc.cpp' that broke log data imports
|
||||
for data lines with leading whitespace.
|
||||
|
@@ -542,7 +542,7 @@ bool RDSvc::import(ImportSource src,const QDate &date,const QString &break_str,
|
||||
|
||||
while(fgets(buf,RD_MAX_IMPORT_LINE_LENGTH,infile)!=NULL) {
|
||||
line_used=false;
|
||||
str_buf=QString(buf).stripWhiteSpace();
|
||||
str_buf=QString(buf);
|
||||
|
||||
//
|
||||
// Cart Number
|
||||
|
Reference in New Issue
Block a user