Summary: | Compile fails under Windows | ||
---|---|---|---|
Product: | [Applications] digikam | Reporter: | Yaakov Selkowitz <yselkowi> |
Component: | Portability-Compilation | Assignee: | Digikam Developers <digikam-bugs-null> |
Status: | RESOLVED FIXED | ||
Severity: | normal | CC: | caulier.gilles |
Priority: | NOR | ||
Version: | unspecified | ||
Target Milestone: | --- | ||
Platform: | Microsoft Windows | ||
OS: | Microsoft Windows | ||
Latest Commit: | Version Fixed In: | 8.2.0 | |
Sentry Crash Report: | |||
Attachments: | libkdcraw/dcrawbinary.cpp patch |
Description
Yaakov Selkowitz
2007-05-16 04:38:29 UTC
Created attachment 20580 [details]
libkdcraw/dcrawbinary.cpp patch
SVN commit 665182 by cgilles: libkdcraw from trunk : patch to compile under CYGWIN BUG: 145482 M +2 -2 dcrawbinary.cpp --- trunk/extragear/libs/libkdcraw/dcrawbinary.cpp #665181:665182 @@ -96,8 +96,8 @@ // The dcraw output looks like this : Raw photo decoder "dcraw" v8.54... QString dcrawHeader("Raw photo decoder \"dcraw\" v"); - QString stdout = QString::fromLocal8Bit(buffer, buflen); - QString firstLine = stdout.section('\n', 1, 1); + QString dcrawOut = QString::fromLocal8Bit(buffer, buflen); + QString firstLine = dcrawOut.section('\n', 1, 1); if (firstLine.startsWith(dcrawHeader)) { |