]> git.lyx.org Git - features.git/commitdiff
add std::
authorLars Gullik Bjønnes <larsbj@gullik.org>
Fri, 23 Mar 2001 07:50:48 +0000 (07:50 +0000)
committerLars Gullik Bjønnes <larsbj@gullik.org>
Fri, 23 Mar 2001 07:50:48 +0000 (07:50 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1809 a592a061-630c-0410-9148-cb99ea01b6c8

src/frontends/controllers/ChangeLog
src/frontends/controllers/ControlCredits.C

index e45a64fc9b50eb7f60bd119f952daec2cf1bde51..60c6350541776aef0c434e6f2a0d04ce2b223429 100644 (file)
@@ -1,3 +1,7 @@
+2001-03-23  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
+
+       * ControlCredits.C (getCredits): add std:: on vector
+
 2001-03-22  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
 
        * ControlCredits.C: remove using that is only used once, use
index 67e344010d3b1ea6286c47481549ee24909f4298..25fdb388b963073f14dc44a94e1eb88b02dcf47d 100644 (file)
@@ -32,13 +32,13 @@ ControlCredits::ControlCredits(LyXView & lv, Dialogs & d)
 }
 
 
-vector<string> const ControlCredits::getCredits() const
+std::vector<string> const ControlCredits::getCredits() const
 {
        std::vector<string> data;
 
        string const name = FileSearch(system_lyxdir, "CREDITS");
 
-       bool found = (!name.empty());
+       bool found(!name.empty());
 
 #warning what are you really doing here... (Lgb)
        // why not just send a stringstream to the calling func?