--- a/dirbrowser/cdbrowser.h
+++ b/dirbrowser/cdbrowser.h
@@ -86,7 +86,7 @@
 
     // This is called when a new tab is created to browse a
     // container. We have no server link yet.
-    void browseIn(QString UDN, vector<CtPathElt> path);
+    void browseIn(QString UDN, std::vector<CtPathElt> path);
 
     std::string getServerUDN();
     const std::vector<CtPathElt>& getcurpath() {
@@ -132,11 +132,11 @@
 private:
     virtual void processOnLinkClicked(const QUrl &);
     bool popupOther(QAction *act);
-    void initContainerHtml(const std::string& ss=string());
+    void initContainerHtml(const std::string& ss = std::string());
     void browseContainer(std::string ctid, std::string title, bool ispl,
                          QPoint scrollpos = QPoint());
-    void search(const string& objid, const string& iss, QPoint scrollpos = 
-                QPoint());
+    void search(const std::string& objid, const std::string& iss,
+                QPoint scrollpos = QPoint());
     void curpathClicked(unsigned int i);
     void waitForPage();
     void mySetHtml(const QString&);
@@ -144,7 +144,7 @@
     void runJS(const QString&);
     void updateAlphamap(char& curinitial, const std::string& tt);
     void maybeShowAlphamap(unsigned int nct);
-    QString alphalinks(const string& initials);
+    QString alphalinks(const std::string& initials);
     int serverFromUDN(const std::string& udn);
     
     static const std::string CTTitleStartMarker;