Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Redesign of the Controller Rack #2944
base: master
Are you sure you want to change the base?
Redesign of the Controller Rack #2944
Changes from 20 commits
16203e1
f8ea0cc
e79196f
ff124c2
9ba7cd7
8ccf0f7
5eb3b63
ff7cd24
c7dbd45
b853dc3
82da86b
187406e
aa88b07
2aa980d
b152520
8c98234
a93c61a
50c6cce
437facd
286414e
210d7f2
40c557d
1f8b0e2
f5ef8a3
5dd58d6
7427142
cf6c7a8
d325dd2
3ea3da8
1252142
66ad5b5
b863932
afafa21
9e67b38
63a14a4
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can't you include
"embed.h"
and<QIcon>
and then change line 42 to:instead of including
peak_controller_effect_control_dialog.cpp
?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't understand. Please, can you elaborate? Have you tested your suggestion?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes when I remove the .cpp include it fails compiling with:
error: 'embed' has not been declared
.So I added
#include "embed.h"
. Then it fails becausesetWindowIcon
aspects aQIcon
but aQPixmap
is given.So that's why also included
<QIcon>
and changed thesetWindowIcon
line.After that it compiles and works fine here.