From 390752409814a271d2fdc3e7fe5f2c2a50ac6d70 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 22 Oct 2017 17:41:48 +0200 Subject: [PATCH] Remove unused wxJSScriptWrapper::GetOutputJSVariable() method There doesn't seem to be any reason to keep it. --- include/wx/private/jsscriptwrapper.h | 5 ----- 1 file changed, 5 deletions(-) diff --git a/include/wx/private/jsscriptwrapper.h b/include/wx/private/jsscriptwrapper.h index e454cbc14d..6300de396f 100644 --- a/include/wx/private/jsscriptwrapper.h +++ b/include/wx/private/jsscriptwrapper.h @@ -149,11 +149,6 @@ public: return wxString::Format("%s = undefined;", m_outputVarName); } - wxString GetOutputJSVariable() const - { - return m_outputVarName; - } - private: wxString m_escapedCode; wxString m_outputVarName;