Changeset 6218 for trunk/qt-gui
- Timestamp:
- 05/26/08 03:39:54 (6 months ago)
- Location:
- trunk/qt-gui/src
- Files:
-
- 2 modified
-
usereventdlg.cpp (modified) (1 diff)
-
usereventdlg.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/qt-gui/src/usereventdlg.cpp
r6180 r6218 101 101 #include <X11/Xutil.h> 102 102 103 using std::pair; 104 using std::make_pair; 103 using namespace std; 105 104 106 105 const size_t SHOW_RECENT_NUM = 5; -
trunk/qt-gui/src/usereventdlg.h
r6180 r6218 30 30 #include <utility> 31 31 32 using std::list;33 34 32 #include "licq_color.h" 35 33 #include "licq_filetransfer.h" … … 127 125 unsigned long PPID() { return m_nPPID; } 128 126 unsigned long ConvoId() { return m_nConvoId; } 129 list<string>& ConvoUsers() { return m_lUsers; }127 std::list<std::string>& ConvoUsers() { return m_lUsers; } 130 128 void SetConvoId(unsigned long n) { m_nConvoId = n; } 131 129 … … 147 145 bool m_bOwner; 148 146 char *m_szId; 149 list<string> m_lUsers;147 std::list<std::string> m_lUsers; 150 148 unsigned long m_nPPID; 151 149 QBoxLayout* top_lay, *top_hlay;
