[gnote] Replace std::list by std::vector in gnote.cpp



commit 5c54396b3d35b41f5e2b56d7fb4130b9e74a3a08
Author: Aurimas Ä?ernius <aurisc4 gmail com>
Date:   Wed Jun 1 22:57:34 2011 +0300

    Replace std::list by std::vector in gnote.cpp

 src/gnote.cpp |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/src/gnote.cpp b/src/gnote.cpp
index 9ee99d9..00fd799 100644
--- a/src/gnote.cpp
+++ b/src/gnote.cpp
@@ -319,14 +319,14 @@ namespace gnote {
 
   void Gnote::on_show_about_action()
   {
-    std::list<Glib::ustring> authors;
+    std::vector<Glib::ustring> authors;
     authors.push_back("Aurimas Ä?ernius <aurisc4 gmail com>");
     authors.push_back("Debarshi Ray <debarshir src gnome org>");
     authors.push_back("Hubert Figuiere <hub figuiere net>");
     authors.push_back("Iain Nicol <iainn src gnome org>");
     authors.push_back(_("and Tomboy original authors."));
     
-    std::list<Glib::ustring> documenters;
+    std::vector<Glib::ustring> documenters;
     documenters.push_back("Alex Graveley <alex beatniksoftware com>");
     documenters.push_back("Boyd Timothy <btimothy gmail com>");
     documenters.push_back("Brent Smith <gnome nextreality net>");



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]