mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-10 20:04:46 +00:00
add std::
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1809 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
67dc240bc9
commit
076298793d
@ -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
|
||||
|
@ -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?
|
||||
|
Loading…
Reference in New Issue
Block a user