mirror of
https://github.com/nillerusr/source-engine.git
synced 2026-08-07 17:29:36 +00:00
Fix compilation under MSVC(VS2019)
This commit is contained in:
@@ -70,10 +70,12 @@ void VPanel::SetEnabled(bool state)
|
||||
|
||||
bool VPanel::IsVisible()
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
bool VPanel::IsEnabled()
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
void VPanel::GetAbsPos(int &x, int &y)
|
||||
@@ -110,8 +112,10 @@ VPanel *VPanel::GetChild(int index)
|
||||
return NULL;
|
||||
}
|
||||
|
||||
CUtlVector< VPanel *> panels;
|
||||
CUtlVector< VPanel *> &VPanel::GetChildren()
|
||||
{
|
||||
return panels;
|
||||
// return NULL;
|
||||
}
|
||||
|
||||
@@ -153,6 +157,7 @@ void VPanel::SetPlat(SurfacePlat *Plat)
|
||||
|
||||
bool VPanel::IsPopup()
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
void VPanel::SetPopup(bool state)
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
$macro SRCDIR ".."
|
||||
$Macro OUTBINDIR "$LIBPUBLIC"
|
||||
$Macro OUTBINDIR "$SRCDIR\..\game\bin"
|
||||
|
||||
$include "$SRCDIR\vpc_scripts\source_dll_base.vpc"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user