Title: [128267] trunk/Source/WebKit/mac
Revision
128267
Author
gga...@apple.com
Date
2012-09-11 23:40:09 -0700 (Tue, 11 Sep 2012)

Log Message

Mac build fix: Commit a file I forgot.

* WebView/WebScriptDebugDelegate.mm:
(-[WebScriptCallFrame functionName]):

Modified Paths

Diff

Modified: trunk/Source/WebKit/mac/ChangeLog (128266 => 128267)


--- trunk/Source/WebKit/mac/ChangeLog	2012-09-12 06:27:26 UTC (rev 128266)
+++ trunk/Source/WebKit/mac/ChangeLog	2012-09-12 06:40:09 UTC (rev 128267)
@@ -1,3 +1,10 @@
+2012-09-11  Geoffrey Garen  <gga...@apple.com>
+
+        Mac build fix: Commit a file I forgot.
+
+        * WebView/WebScriptDebugDelegate.mm:
+        (-[WebScriptCallFrame functionName]):
+
 2012-09-11  Michael Saboff  <msab...@apple.com>
 
         Build fixed for http://trac.webkit.org/changeset/128243

Modified: trunk/Source/WebKit/mac/WebView/WebScriptDebugDelegate.mm (128266 => 128267)


--- trunk/Source/WebKit/mac/WebView/WebScriptDebugDelegate.mm	2012-09-12 06:27:26 UTC (rev 128266)
+++ trunk/Source/WebKit/mac/WebView/WebScriptDebugDelegate.mm	2012-09-12 06:40:09 UTC (rev 128267)
@@ -203,8 +203,8 @@
     if (!_private->debuggerCallFrame)
         return nil;
 
-    const String* functionName = _private->debuggerCallFrame->functionName();
-    return functionName ? nsStringNilIfEmpty(*functionName) : nil;
+    String functionName = _private->debuggerCallFrame->functionName();
+    return nsStringNilIfEmpty(functionName);
 }
 
 // Returns the pending exception for this frame (nil if none).
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to