summaryrefslogtreecommitdiff
path: root/libs/gtkmm2ext/gtkmm2ext/window_title.h
diff options
context:
space:
mode:
Diffstat (limited to 'libs/gtkmm2ext/gtkmm2ext/window_title.h')
-rw-r--r--libs/gtkmm2ext/gtkmm2ext/window_title.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/libs/gtkmm2ext/gtkmm2ext/window_title.h b/libs/gtkmm2ext/gtkmm2ext/window_title.h
index 93b47d9d45..62a131c096 100644
--- a/libs/gtkmm2ext/gtkmm2ext/window_title.h
+++ b/libs/gtkmm2ext/gtkmm2ext/window_title.h
@@ -24,8 +24,6 @@
namespace Gtkmm2ext {
-using std::string;
-
/**
* \class The WindowTitle class can be used to maintain the
* consistancy of window titles between windows and dialogs.
@@ -42,19 +40,19 @@ public:
* which will may be the application name or the document
* name in a document based application.
*/
- WindowTitle(const string& title);
+ WindowTitle(const std::string& title);
/**
* Add an string element to the window title.
*/
- void operator+= (const string&);
+ void operator+= (const std::string&);
/// @return The window title string.
- const string& get_string () { return m_title;}
+ const std::string& get_string () { return m_title;}
private:
- string m_title;
+ std::string m_title;
};