mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-10-10 16:43:35 +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'.
|
* Fixed a typo in 'docs/docbook/rdclilogedit.xml'.
|
||||||
2016-07-27 Fred Gleason <fredg@paravelsystems.com>
|
2016-07-27 Fred Gleason <fredg@paravelsystems.com>
|
||||||
* Removed dead code from 'lib/rdsvc.cpp'.
|
* 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) {
|
while(fgets(buf,RD_MAX_IMPORT_LINE_LENGTH,infile)!=NULL) {
|
||||||
line_used=false;
|
line_used=false;
|
||||||
str_buf=QString(buf).stripWhiteSpace();
|
str_buf=QString(buf);
|
||||||
|
|
||||||
//
|
//
|
||||||
// Cart Number
|
// Cart Number
|
||||||
|
Reference in New Issue
Block a user