aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core
diff options
context:
space:
mode:
authorGravatar Hoa V. DINH <dinh.viet.hoa@gmail.com>2014-03-12 23:44:34 -0700
committerGravatar Hoa V. DINH <dinh.viet.hoa@gmail.com>2014-03-12 23:44:46 -0700
commitdc05e97c172306e1aa5e24c37919660438746d31 (patch)
treec957ff40fbf7a269f72b4c4465417625aaf08e31 /src/core
parentf262b42e781de2d68ae4adbbf14f44b14b901fc4 (diff)
Disable logs. Fixed description of Set
Diffstat (limited to 'src/core')
-rw-r--r--src/core/basetypes/MCOperationQueue.cc2
-rw-r--r--src/core/basetypes/MCSet.cc2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/core/basetypes/MCOperationQueue.cc b/src/core/basetypes/MCOperationQueue.cc
index 6840a279..3619530b 100644
--- a/src/core/basetypes/MCOperationQueue.cc
+++ b/src/core/basetypes/MCOperationQueue.cc
@@ -125,7 +125,7 @@ void OperationQueue::runOperations()
if (needsCheckRunning) {
retain(); // (1)
- MCLog("check running %p", this);
+ //MCLog("check running %p", this);
#if __APPLE__
performMethodOnDispatchQueue((Object::Method) &OperationQueue::checkRunningOnMainThread, this, mDispatchQueue);
#else
diff --git a/src/core/basetypes/MCSet.cc b/src/core/basetypes/MCSet.cc
index ad615388..ceccbdcc 100644
--- a/src/core/basetypes/MCSet.cc
+++ b/src/core/basetypes/MCSet.cc
@@ -45,7 +45,7 @@ Set * Set::setWithArray(Array * objects)
String * Set::description()
{
String * result = String::string();
- result->appendUTF8Format("<%s:%p ", className(), this);
+ result->appendUTF8Format("<%s:%p ", MCUTF8(className()), this);
result->appendString(mHash->allKeys()->description());
result->appendUTF8Characters(">");
return result;