summaryrefslogtreecommitdiffstats
path: root/webkit/pending
diff options
context:
space:
mode:
authormark@chromium.org <mark@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2008-10-03 16:37:23 +0000
committermark@chromium.org <mark@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2008-10-03 16:37:23 +0000
commit877334cf05fb04080e3c7a35a35ab14211601228 (patch)
treec1889734a16b6f746071d06ddf1d4eabe806cc4b /webkit/pending
parent6c0f40f4412892c86f3e654d1bb478af396d037b (diff)
downloadchromium_src-877334cf05fb04080e3c7a35a35ab14211601228.zip
chromium_src-877334cf05fb04080e3c7a35a35ab14211601228.tar.gz
chromium_src-877334cf05fb04080e3c7a35a35ab14211601228.tar.bz2
KURL::m_string only exists in the non-GURL version of KURL; make the NSString*
conversion always get the string through the approved accessor instead of using the member directly. Review URL: http://codereview.chromium.org/6240 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@2832 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/pending')
-rw-r--r--webkit/pending/KURL.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/webkit/pending/KURL.h b/webkit/pending/KURL.h
index e95b8a8..eabbb5a 100644
--- a/webkit/pending/KURL.h
+++ b/webkit/pending/KURL.h
@@ -209,7 +209,7 @@ public:
operator NSURL*() const;
#endif
#ifdef __OBJC__
- operator NSString*() const { return m_string; }
+ operator NSString*() const { return string(); }
#endif
#if PLATFORM(QT)