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
0f0350e1
Commit
0f0350e1
authored
Feb 28, 2017
by
Carsten Fuhrmann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed the bug
parent
73da7b09
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
4 additions
and
2 deletions
+4
-2
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
overlaycontroller.cpp
overlaycontroller.cpp
+3
-1
plugin.cpp
plugin.cpp
+1
-1
No files found.
Release/x64/qtTsOverlay_x64.dll
View file @
0f0350e1
No preview for this file type
Release/x64/qtTsOverlay_x64.exp
View file @
0f0350e1
No preview for this file type
Release/x64/qtTsOverlay_x64.lib
View file @
0f0350e1
No preview for this file type
overlaycontroller.cpp
View file @
0f0350e1
...
...
@@ -4,6 +4,7 @@
#include <QStringList>
#include "plugin.h"
#include <qdebug.h>
#include "teamspeak\public_errors.h"
//#ifndef _DEBUG
//#pragma comment( linker, "/subsystem:\"windows\" /entry:\"mainCRTStartup\"" )
...
...
@@ -217,7 +218,8 @@ void OverlayController::displayChannelList()
}
uint64
*
channelIDList
;
ts3
.
getChannelList
(
m_SCHID
,
&
channelIDList
);
if
(
ts3
.
getChannelList
(
m_SCHID
,
&
channelIDList
)
!=
ERROR_ok
)
return
;
QVector
<
channelInfo
>
channelList
;
...
...
plugin.cpp
View file @
0f0350e1
...
...
@@ -129,7 +129,7 @@ int ts3plugin_init() {
void
ts3plugin_shutdown
()
{
while
(
g_serverList
.
size
()
>
0
)
delete
g_serverList
.
erase
(
g_serverList
.
begin
()).
value
(
);
delete
g_serverList
.
take
(
g_serverList
.
firstKey
()
);
/*
...
...
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