From: James Benton Date: Fri, 10 Aug 2012 14:55:51 +0000 (+0100) Subject: Fix erroneous class Profile forward declaration to struct Profile. X-Git-Url: https://git.cworth.org/git?a=commitdiff_plain;h=66dc55d4af2bb508965b87745fa1201298105650;p=apitrace Fix erroneous class Profile forward declaration to struct Profile. --- diff --git a/gui/profiledialog.h b/gui/profiledialog.h index 9946efe..39f8699 100644 --- a/gui/profiledialog.h +++ b/gui/profiledialog.h @@ -4,7 +4,7 @@ #include "ui_profiledialog.h" #include -namespace trace { class Profile; } +namespace trace { struct Profile; } class ProfileDialog : public QDialog, public Ui_ProfileDialog {