Building on Windows, I get

Qt Code:
  1. 1>.\qwwfilechooser\qwwfilechooser.cpp(79) : error C3083: '{ctor}': the symbol to the left of a '::' must be a type
  2. 1>.\qwwfilechooser\qwwfilechooser.cpp(228) : error C3083: '{ctor}': the symbol to the left of a '::' must be a type
To copy to clipboard, switch view to plain text mode 

Both lines look like
Qt Code:
  1. int mar = style()->pixelMetric(QStyle::QStyle::PM_DefaultFrameWidth, &opt, this);
To copy to clipboard, switch view to plain text mode 

Removing redundant "QStyle" fixes compilation, but I've now got some linker errors that I'm trying to sort out.

P