From: Vadim Zeitlin Date: Wed, 15 Feb 2012 00:35:47 +0000 (+0000) Subject: Document wxFTP::TransferMode enum in the correct scope. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/0e1cd9bedbaf855943d833171793b2eeb1e25eac Document wxFTP::TransferMode enum in the correct scope. It's declared inside wxFTP class and not in global scope. Closes #13976. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@70590 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/interface/wx/protocol/ftp.h b/interface/wx/protocol/ftp.h index ddfdac4f0e..b6a7992ffc 100644 --- a/interface/wx/protocol/ftp.h +++ b/interface/wx/protocol/ftp.h @@ -6,16 +6,6 @@ // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// -/** - Transfer modes used by wxFTP. -*/ -enum TransferMode -{ - NONE, //!< not set by user explicitly. - ASCII, - BINARY -}; - /** @class wxFTP @@ -100,6 +90,16 @@ enum TransferMode class wxFTP : public wxProtocol { public: + /** + Transfer modes used by wxFTP. + */ + enum TransferMode + { + NONE, //!< not set by user explicitly. + ASCII, + BINARY + }; + /** Default constructor. */