Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
nmsdk
rdk
Commits
a7587412a19e
Commit
1daada19
authored
Jun 13, 2021
by
Alexab
Browse files
Some warnings removed #3
--HG-- branch : MockCompsTest
parent
3f3f779aef9a
Changes
5
Hide whitespace changes
Inline
Side-by-side
Build/Lib/BCB/rdk.bcb.static.cbproj
View file @
a7587412
...
...
@@ -58,6 +58,7 @@
<Base>true</Base>
</PropertyGroup>
<PropertyGroup Condition="'$(Base)'!=''">
<BCC_wpch>false</BCC_wpch>
<TLIB_PageSize>8192</TLIB_PageSize>
<_TCHARMapping>char</_TCHARMapping>
<SanitizedProjectName>rdk_bcb_static</SanitizedProjectName>
...
...
@@ -1027,13 +1028,13 @@
<Operation>1</Operation>
</Platform>
</DeployClass>
<ProjectRoot Platform="iOS
Simulator
" Name="$(PROJECTNAME).app"/>
<ProjectRoot Platform="iOS
Device32
" Name="$(PROJECTNAME).app"/>
<ProjectRoot Platform="Android" Name="$(PROJECTNAME)"/>
<ProjectRoot Platform="Win32" Name="$(PROJECTNAME)"/>
<ProjectRoot Platform="iOSDevice64" Name="$(PROJECTNAME).app"/>
<ProjectRoot Platform="Win64" Name="$(PROJECTNAME)"/>
<ProjectRoot Platform="iOSSimulator" Name="$(PROJECTNAME).app"/>
<ProjectRoot Platform="OSX32" Name="$(PROJECTNAME)"/>
<ProjectRoot Platform="iOSDevice32" Name="$(PROJECTNAME).app"/>
</Deployment>
</BorlandProject>
<ProjectFileVersion>12</ProjectFileVersion>
...
...
Build/Lib/Qt/RdkDefines.pri
View file @
a7587412
unix {
QMAKE_CXXFLAGS += -Wno-misleading-indentation
}
DEFINES += LIBRDK_LIBRARY_EXPORT
DEFINES += RDK_UNICODE_RUN
...
...
Core/Application/UServerControl.cpp
View file @
a7587412
...
...
@@ -540,7 +540,7 @@ void UServerControl::ProcessIncomingData(std::string &bind, UServerTransport *tr
if
(
!
commands
.
empty
())
{
for
(
int
i
=
0
;
i
<
commands
.
size
();
i
++
)
for
(
int
i
=
0
;
i
<
int
(
commands
.
size
()
)
;
i
++
)
{
/*
if(!RdkApplication.GetRpcDispatcher()->IsCmdSupported(&CurrentProcessedCommand))
...
...
Core/Graphics/UBitmap.cpp
View file @
a7587412
...
...
@@ -5903,10 +5903,10 @@ UBHistogram operator - (const UBHistogram &value1, const UBHistogram &value2)
else
{
res
.
Data
[
i
].
Int
=
abs
(
int
(
value1
.
Data
[
i
].
Int
-
value2
.
Data
[
i
].
Int
));
if
(
res
.
Data
[
i
].
Int
<
h_min
)
h_min
=
float
(
res
.
Data
[
i
].
Int
);
if
(
res
.
Data
[
i
].
Int
>
h_max
)
h_max
=
float
(
res
.
Data
[
i
].
Int
);
if
(
res
.
Data
[
i
].
Int
<
int
(
h_min
)
)
h_min
=
float
(
res
.
Data
[
i
].
Int
);
if
(
res
.
Data
[
i
].
Int
>
int
(
h_max
)
)
h_max
=
float
(
res
.
Data
[
i
].
Int
);
}
}
...
...
GUI/Qt/UClassesListWidget.cpp
View file @
a7587412
...
...
@@ -148,6 +148,7 @@ QString UClassesListWidget::selctedClass() const
default:
return
QString
();
}
return
QString
();
}
void
UClassesListWidget
::
AUpdateLibsView
(
QString
lib_name
)
...
...
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