Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Q
qtTsOverlay
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
0
Merge Requests
0
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Test Cases
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
C-Fu
qtTsOverlay
Commits
6fd223ee
Commit
6fd223ee
authored
Mar 02, 2017
by
Carsten Fuhrmann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed mixed free memory functions
parent
37e94587
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
3 additions
and
3 deletions
+3
-3
Release/x64/qtTsOverlay_x64.dll
Release/x64/qtTsOverlay_x64.dll
+0
-0
Release/x64/qtTsOverlay_x64.exp
Release/x64/qtTsOverlay_x64.exp
+0
-0
Release/x64/qtTsOverlay_x64.lib
Release/x64/qtTsOverlay_x64.lib
+0
-0
plugin.cpp
plugin.cpp
+3
-3
No files found.
Release/x64/qtTsOverlay_x64.dll
View file @
6fd223ee
No preview for this file type
Release/x64/qtTsOverlay_x64.exp
View file @
6fd223ee
No preview for this file type
Release/x64/qtTsOverlay_x64.lib
View file @
6fd223ee
No preview for this file type
plugin.cpp
View file @
6fd223ee
...
...
@@ -87,7 +87,7 @@ QString clientID2Name(uint64 serverConnectionHandlerID, anyID clientID)
return
QString
();
QString
name
(
tmp
);
ts3
plugin_
freeMemory
(
tmp
);
ts3
Functions
.
freeMemory
(
tmp
);
return
name
;
}
...
...
@@ -98,7 +98,7 @@ QString channelID2Name(uint64 serverConnectionHandlerID, uint64 channelID)
return
QString
();
QString
name
(
tmp
);
ts3
plugin_
freeMemory
(
tmp
);
ts3
Functions
.
freeMemory
(
tmp
);
return
name
;
}
...
...
@@ -323,7 +323,7 @@ void ts3plugin_initHotkeys(struct PluginHotkey*** hotkeys) {
/* Register hotkeys giving a keyword and a description.
* The keyword will be later passed to ts3plugin_onHotkeyEvent to identify which hotkey was triggered.
* The description is shown in the clients hotkey dialog. */
BEGIN_CREATE_HOTKEYS
(
3
);
/* Create 3 hotkeys. Size must be correct for allocating memory. */
BEGIN_CREATE_HOTKEYS
(
1
);
/* Create 3 hotkeys. Size must be correct for allocating memory. */
CREATE_HOTKEY
(
"Channellist"
,
"Displays a simple channellist of the server"
);
END_CREATE_HOTKEYS
;
...
...
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