add visible() method to Tearoff so we can check whether or not it is hidden
[ardour.git] / libs / gtkmm2ext / gtkmm2ext / window_title.h
index 93b47d9d45bdc6ced096fd02279c63e169014ca4..62a131c096c4df8d329b172d4d585b84e1f97207 100644 (file)
@@ -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;
 
 };