Summary: | error during cpmpilation parts/doctreeview/doctreeviewwidget.cpp | ||
---|---|---|---|
Product: | [Applications] kdevelop | Reporter: | Damir Islamov <damir> |
Component: | general | Assignee: | KDevelop Developers <kdevelop-devel> |
Status: | RESOLVED NOT A BUG | ||
Severity: | normal | ||
Priority: | NOR | ||
Version: | unspecified | ||
Target Milestone: | --- | ||
Platform: | Debian testing | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Damir Islamov
2003-11-23 11:29:37 UTC
To my mind the better solution is -- if ( (f = fopen(d.filePath(*it), "r")) != 0) ++ QString temp=d.filePath(*it); ++ if ( (f = fopen(temp.ascii(), "r")) != 0) At last it works! -- if ( (f = fopen(d.filePath(*it), "r")) != 0) ++ QString temp=d.filePath(*it); ++ if ( (f = fopen(temp.ascii(), "r")) != 0) QString temp=d.filePath(*it); if ( (f = fopen(temp.ascii(), "r")) != 0) Like was said in BR64103 : This in not a bug! This is a compilation error. Please: -Report bugs to the bug database (here) -Report compilation erros to the mailing list (not here) This information was on that bug report AND in on our website in the page that explains you how to report and see bugs: http://www.kdevelop.org/index.html?filename=bugs.html Thanks for reporting this, but please use the mailing list instead |