Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
c17b0609
Commit
c17b0609
authored
Apr 27, 2013
by
Jean-Baptiste Kempf
Browse files
Qt: different call to SHAddToRecentDocs
Should close #7696
parent
f902d8b1
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/gui/qt4/recents.cpp
View file @
c17b0609
...
...
@@ -45,6 +45,8 @@
SHARD_SHELLITEM = 0x00000008
} SHARD; */
#define SHARD_PATHW 0x00000003
#include
<vlc_charset.h>
#endif
...
...
@@ -91,7 +93,9 @@ void RecentsMRL::addRecent( const QString &mrl )
char
*
path
=
make_path
(
qtu
(
mrl
)
);
if
(
path
)
{
SHAddToRecentDocs
(
SHARD_PATHW
,
mrl
.
utf16
()
);
wchar_t
*
wmrl
=
ToWide
(
path
);
SHAddToRecentDocs
(
SHARD_PATHW
,
wmrl
);
free
(
wmrl
);
free
(
path
);
}
#endif
...
...
Write
Preview
Supports
Markdown
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