diff options
Diffstat (limited to 'Swift/Controllers/UIEvents/RenameGroupUIEvent.h')
| -rw-r--r-- | Swift/Controllers/UIEvents/RenameGroupUIEvent.h | 12 | 
1 files changed, 6 insertions, 6 deletions
diff --git a/Swift/Controllers/UIEvents/RenameGroupUIEvent.h b/Swift/Controllers/UIEvents/RenameGroupUIEvent.h index 1825d77..9773b9e 100644 --- a/Swift/Controllers/UIEvents/RenameGroupUIEvent.h +++ b/Swift/Controllers/UIEvents/RenameGroupUIEvent.h @@ -7,24 +7,24 @@  #pragma once  #include <Swift/Controllers/UIEvents/UIEvent.h> -#include <Swiften/Base/String.h> +#include <string>  namespace Swift {  	class RenameGroupUIEvent : public UIEvent {  		public: -			RenameGroupUIEvent(const String& group, const String& newName) : group(group), newName(newName) { +			RenameGroupUIEvent(const std::string& group, const std::string& newName) : group(group), newName(newName) {  			} -			const String& getGroup() const { +			const std::string& getGroup() const {  				return group;  			} -			const String& getNewName() const { +			const std::string& getNewName() const {  				return newName;  			}  		private: -			String group; -			String newName; +			std::string group; +			std::string newName;  	};  }  | 
 Swift