mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
0023460: Update QT products samples
Rename all generation-vc-projects.bat (in OCCT) to genproj.bat. Fixed warnings in VoxelDemo.
This commit is contained in:
parent
0059facbbf
commit
ee0a5d2528
@ -48,7 +48,7 @@
|
||||
RuntimeLibrary="3"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="true"
|
||||
Detect64BitPortabilityProblems="false"
|
||||
DebugInformationFormat="4"
|
||||
/>
|
||||
<Tool
|
||||
@ -123,7 +123,7 @@
|
||||
RuntimeLibrary="2"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="true"
|
||||
Detect64BitPortabilityProblems="false"
|
||||
DebugInformationFormat="3"
|
||||
/>
|
||||
<Tool
|
||||
|
@ -12,7 +12,7 @@ Timer::Timer():myWriter(0) {}
|
||||
|
||||
Timer::Timer(const char* filename)
|
||||
{
|
||||
myWriter = fopen(filename, "a");
|
||||
fopen_s(&myWriter,filename, "a");
|
||||
}
|
||||
|
||||
Timer::~Timer()
|
||||
|
@ -323,7 +323,7 @@ static void setColor(const Quantity_Color& color, const Standard_Boolean highlig
|
||||
{
|
||||
static Quantity_Color highlight_color(Quantity_NOC_BLUE1);
|
||||
if(highlight)
|
||||
glColor3f(highlight_color.Red(), highlight_color.Green(), highlight_color.Blue());
|
||||
glColor3f((GLfloat)highlight_color.Red(), (GLfloat)highlight_color.Green(), (GLfloat)highlight_color.Blue());
|
||||
else
|
||||
glColor3d(color.Red(), color.Green(), color.Blue());
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user