Version: CVS20031123 (using KDE KDE 3.1.4) Installed from: Debian testing/unstable Packages Compiler: gcc-3.3.2 OS: Linux It's REOPEN of # 64103 automake-1.7.9 autoconf-2.58 Error output: doctreeviewwidget.cpp: In member function `virtual void DocTreeDocbaseFolder::setOpen(bool)': doctreeviewwidget.cpp:767: error: cannot convert `QString' to `char*' in initialization The wrong code is if ( (f = fopen(d.filePath(*it), "r")) != 0) 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!
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