Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
CommonGUI
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Frédéric Larue
CommonGUI
Commits
1d432861
Commit
1d432861
authored
Mar 24, 2020
by
Frédéric Larue
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor bug fixed UIParamDialog creation.
parent
9a70b73a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
6 deletions
+7
-6
UIParam/UIParamDialog.cpp
UIParam/UIParamDialog.cpp
+6
-5
UIParam/UIParamDialog.h
UIParam/UIParamDialog.h
+1
-1
No files found.
UIParam/UIParamDialog.cpp
View file @
1d432861
...
...
@@ -24,11 +24,12 @@ UIParamDialog::UIParamDialog( const QString& title, QWidget *parent ) : QDialog(
l
->
addWidget
(
dlgButtons
);
setLayout
(
l
);
m_Params
->
SetVisible
();
}
void
UIParamDialog
::
showEvent
(
QShowEvent
*
evt
)
{
QDialog
::
showEvent
(
evt
);
m_Params
->
SetVisible
(
);
}
//
void UIParamDialog::showEvent( QShowEvent *evt )
//
{
// m_Params->SetVisible(
);
// QDialog::showEvent( evt
);
//
}
UIParam/UIParamDialog.h
View file @
1d432861
...
...
@@ -33,7 +33,7 @@ public:
inline
UIParamSet
&
GetParameters
()
const
{
return
*
m_Params
;
}
void
showEvent
(
QShowEvent
*
evt
);
//
void showEvent( QShowEvent *evt );
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment