add std::

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1809 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Lars Gullik Bjønnes 2001-03-23 07:50:48 +00:00
parent 67dc240bc9
commit 076298793d
2 changed files with 6 additions and 2 deletions

View 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

View 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?