Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
1539b471
Commit
1539b471
authored
Dec 06, 2005
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Empty gettext translated strings are illegal
parent
9bf0edf1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
modules/gui/wxwidgets/dialogs/vlm/vlm_panel.cpp
modules/gui/wxwidgets/dialogs/vlm/vlm_panel.cpp
+5
-5
No files found.
modules/gui/wxwidgets/dialogs/vlm/vlm_panel.cpp
View file @
1539b471
...
...
@@ -2,9 +2,9 @@
* vlm_panel.cpp: VLM Panel
*****************************************************************************
* Copyright (C) 2000-2005 the VideoLAN team
* $Id
: playlist.cpp 12582 2005-09-17 14:15:32Z zorglub
$
* $Id$
*
* Authors: Clment Stenac <zorglub@videolan.org>
* Authors: Cl
é
ment Stenac <zorglub@videolan.org>
*
* This program is free software; you can redistribute it and/OR MODIFy
* it under the terms of the GNU General Public License as published by
...
...
@@ -368,13 +368,13 @@ VLMAddStreamPanel::VLMAddStreamPanel( intf_thread_t *_p_intf,
upper_sizer
->
Add
(
new
wxStaticText
(
this
,
-
1
,
wxU
(
_
(
"Name"
)
)
),
0
,
wxALIGN_CENTER_VERTICAL
,
0
);
name_text
=
new
wxTextCtrl
(
this
,
-
1
,
wxU
(
_
(
""
)
),
wxDefaultPosition
,
name_text
=
new
wxTextCtrl
(
this
,
-
1
,
wxU
(
""
),
wxDefaultPosition
,
wxSize
(
150
,
-
1
)
);
upper_sizer
->
Add
(
name_text
,
1
,
wxEXPAND
|
wxLEFT
|
wxRIGHT
,
5
);
upper_sizer
->
Add
(
new
wxStaticText
(
this
,
-
1
,
wxU
(
_
(
"Input"
)
)
),
0
,
wxALIGN_CENTER_VERTICAL
,
0
);
input_text
=
new
wxTextCtrl
(
this
,
-
1
,
wxU
(
_
(
""
)
)
,
input_text
=
new
wxTextCtrl
(
this
,
-
1
,
wxU
(
""
)
,
wxDefaultPosition
,
wxSize
(
150
,
-
1
)
);
upper_sizer
->
Add
(
input_text
,
1
,
wxEXPAND
|
wxLEFT
|
wxRIGHT
,
5
);
upper_sizer
->
Add
(
new
wxButton
(
this
,
ChooseInput_Event
,
wxU
(
_
(
"Choose"
)
)
)
);
...
...
@@ -384,7 +384,7 @@ VLMAddStreamPanel::VLMAddStreamPanel( intf_thread_t *_p_intf,
upper_sizer
->
Add
(
new
wxStaticText
(
this
,
-
1
,
wxU
(
_
(
"Output"
)
)
),
0
,
wxALIGN_CENTER_VERTICAL
,
0
);
output_text
=
new
wxTextCtrl
(
this
,
-
1
,
wxU
(
_
(
""
)
)
,
output_text
=
new
wxTextCtrl
(
this
,
-
1
,
wxU
(
""
)
,
wxDefaultPosition
,
wxSize
(
150
,
-
1
)
);
upper_sizer
->
Add
(
output_text
,
1
,
wxEXPAND
|
wxLEFT
|
wxRIGHT
,
5
);
upper_sizer
->
Add
(
new
wxButton
(
this
,
ChooseOutput_Event
,
...
...
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