From d665b39db74645facf515edfd4773ad30b22b817 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Wed, 22 Aug 2012 14:10:57 -0700 Subject: [PATCH] Rename myfile variable to file --- Atom-Linux/native_handler.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Atom-Linux/native_handler.cpp b/Atom-Linux/native_handler.cpp index b6e25c995..51b08ca3d 100644 --- a/Atom-Linux/native_handler.cpp +++ b/Atom-Linux/native_handler.cpp @@ -270,10 +270,10 @@ void NativeHandler::Write(const CefString& name, CefRefPtr object, string path = arguments[0]->GetStringValue().ToString(); string content = arguments[1]->GetStringValue().ToString(); - ofstream myfile; - myfile.open(path.c_str()); - myfile << content; - myfile.close(); + ofstream file; + file.open(path.c_str()); + file << content; + file.close(); } void NativeHandler::WriteToPasteboard(const CefString& name,