Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
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
videolan
vlc
Commits
13df93e3
Commit
13df93e3
authored
Jan 10, 2008
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt4 -reinventing the wheel is ALWAYS a good idea...
parent
076ff7c9
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
3 deletions
+1
-3
modules/gui/qt4/main_interface.cpp
modules/gui/qt4/main_interface.cpp
+1
-1
modules/gui/qt4/qt4.hpp
modules/gui/qt4/qt4.hpp
+0
-2
No files found.
modules/gui/qt4/main_interface.cpp
View file @
13df93e3
...
...
@@ -551,7 +551,7 @@ QSize MainInterface::sizeHint() const
if
(
!
dockPL
->
isFloating
()
&&
dockPL
->
isVisible
()
&&
dockPL
->
widget
()
)
{
nheight
+=
dockPL
->
size
().
height
();
nwidth
=
MAX
(
nwidth
,
dockPL
->
size
().
width
()
);
nwidth
=
__
MAX
(
nwidth
,
dockPL
->
size
().
width
()
);
msg_Dbg
(
p_intf
,
"3 %i %i"
,
nheight
,
nwidth
);
}
msg_Dbg
(
p_intf
,
"4 %i %i"
,
nheight
,
nwidth
);
...
...
modules/gui/qt4/qt4.hpp
View file @
13df93e3
...
...
@@ -93,8 +93,6 @@ struct intf_sys_t
#define TOGGLEV( x ) { if( x->isVisible() ) x->hide(); \
else x->show(); }
#define MAX(A,B) ( (A) > (B) ? (A):(B))
static
int
DialogEvent_Type
=
QEvent
::
User
+
1
;
//static int PLUndockEvent_Type = QEvent::User + 2;
//static int PLDockEvent_Type = QEvent::User + 3;
...
...
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