Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvng <viktor.govako@gmail.com>2012-06-30 07:44:09 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:40:26 +0300
commit89d69320571811fc36adf84ea9a11a5df704ee9c (patch)
tree999ae04dd60e4471411d50f0597ce00be2e4459e /platform/platform_win.cpp
parent1a7cff91e18008084fb72c5348457578cb550bae (diff)
Factor out common Platform implementations for Unix-based OS.
Diffstat (limited to 'platform/platform_win.cpp')
-rw-r--r--platform/platform_win.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/platform_win.cpp b/platform/platform_win.cpp
index 4edfe71d71..78fac476da 100644
--- a/platform/platform_win.cpp
+++ b/platform/platform_win.cpp
@@ -110,12 +110,12 @@ string Platform::UniqueClientId() const
void Platform::RunOnGuiThread(TFunctor const & fn)
{
- // @TODO
+ /// @todo
fn();
}
void Platform::RunAsync(TFunctor const & fn, Priority p)
{
- // @TODO
+ /// @todo
fn();
}