By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release.
Bug 2892 - kaffeine urllistview.h patch for clang
Summary: kaffeine urllistview.h patch for clang
Status: RESOLVED FIXED
Alias: None
Product: TDE
Classification: Unclassified
Component: non-core programs (show other bugs)
Version: R14.1.x [Trinity]
Hardware: All Linux
: P5 normal
Assignee: Timothy Pearson
URL:
Depends on:
Blocks: R14.0.5
  Show dependency treegraph
 
Reported: 2018-05-04 09:43 CDT by Ray Vine
Modified: 2018-05-06 05:54 CDT (History)
2 users (show)

See Also:
Compiler Version:
TDE Version String:
Application Version:
Application Name:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Ray Vine 2018-05-04 09:43:36 CDT
Error:
In file included from ../../../../../kaffeine/src/input/audiobrowser/urllistview.cpp:36:
../../../../../kaffeine/src/input/audiobrowser/urllistview.h:35:7: error: forward declaration of class cannot have a nested name specifier
class TDEIO::Job;
      ^~~~~~~

Patch:
--- kaffeine/src/input/audiobrowser/urllistview.h
+++ kaffeine/src/input/audiobrowser/urllistview.h
@@ -35 +35 @@
-class TDEIO::Job;
+namespace TDEIO { class Job; }
Comment 1 Slávek Banko 2018-05-06 05:54:49 CDT
Fixed in GIT hash 951ecef3 (master) and 3170402a (r14.0.x).
Thank you for your patch!