mirror of
https://github.com/vczh-libraries/Release.git
synced 2026-05-30 13:05:20 +08:00
...
This commit is contained in:
@@ -41,7 +41,7 @@ void GuiMain()
|
|||||||
RegexMatch::List names;
|
RegexMatch::List names;
|
||||||
splitter.Split(resourceNameList, false, names);
|
splitter.Split(resourceNameList, false, names);
|
||||||
|
|
||||||
FOREACH(RegexMatch::Ref, name, names)
|
for (auto name : names)
|
||||||
{
|
{
|
||||||
auto resourceName = name->Result().Value();
|
auto resourceName = name->Result().Value();
|
||||||
#ifdef VCZH_64
|
#ifdef VCZH_64
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -39,7 +39,7 @@ namespace myapi
|
|||||||
|
|
||||||
~App()
|
~App()
|
||||||
{
|
{
|
||||||
FOREACH(Ptr<IValueSubscription>, sub, subscriptions)
|
for (auto sub : subscriptions)
|
||||||
{
|
{
|
||||||
sub->Close();
|
sub->Close();
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user