window: store strings history in list instead of deque

This commit is contained in:
Andrzej Rybczak
2009-11-13 18:28:13 +01:00
parent 180d71ed28
commit 3365b066c3
2 changed files with 20 additions and 29 deletions

View File

@@ -31,7 +31,7 @@
#include "curses.h"
#include <deque>
#include <list>
#include <stack>
#include <vector>
#include <string>
@@ -580,7 +580,7 @@ namespace NCurses
FDCallbacks itsFDs;
/// pointer to container used as history
std::deque<std::wstring> *itsHistory;
std::list<std::wstring> *itsHistory;
/// counters for format flags
int itsBoldCounter;