diff options
Diffstat (limited to 'vncviewer/ServerDialog.h')
-rw-r--r-- | vncviewer/ServerDialog.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vncviewer/ServerDialog.h b/vncviewer/ServerDialog.h index a76a58cf..de330b59 100644 --- a/vncviewer/ServerDialog.h +++ b/vncviewer/ServerDialog.h @@ -21,7 +21,7 @@ #include <FL/Fl_Window.H> #include <string> -#include <vector> +#include <list> class Fl_Widget; class Fl_Input_Choice; @@ -49,7 +49,7 @@ private: protected: Fl_Input_Choice *serverName; - std::vector<std::string> serverHistory; + std::list<std::string> serverHistory; std::string usedDir; }; |