mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-10 20:04:46 +00:00
2002-05-30 Lars Gullik Bj�nnes <larsbj@birdstep.com>
FileDialog.C (FileDialog): fix () bug when using new xformsGImage.C (newImage): ditto Toolbar_pimpl.C (Pimpl): ditto xfont_loader.C (getFontinfo): ditto git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4295 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
c0a9275323
commit
aedf7c6b5b
@ -1,3 +1,10 @@
|
||||
2002-05-30 Lars Gullik Bjønnes <larsbj@birdstep.com>
|
||||
|
||||
* FileDialog.C (FileDialog): fix () bug when using new
|
||||
* xformsGImage.C (newImage): ditto
|
||||
* Toolbar_pimpl.C (Pimpl): ditto
|
||||
* xfont_loader.C (getFontinfo): ditto
|
||||
|
||||
2002-05-29 Lars Gullik Bjønnes <larsbj@birdstep.com>
|
||||
|
||||
* switch from SigC signals to boost::signals.
|
||||
|
@ -33,7 +33,7 @@ using std::endl;
|
||||
FileDialog::FileDialog(LyXView *lv, string const &t, kb_action s, Button b1, Button b2)
|
||||
: private_(0), lv_(lv), title_(t), success_(s)
|
||||
{
|
||||
private_ = new FileDialog::Private();
|
||||
private_ = new FileDialog::Private;
|
||||
|
||||
private_->SetButton(0, b1.first, b1.second);
|
||||
private_->SetButton(1, b2.first, b2.second);
|
||||
|
@ -89,7 +89,7 @@ Toolbar::Pimpl::Pimpl(LyXView * o, int x, int y)
|
||||
: owner(static_cast<XFormsView *>(o)), sxpos(x), sypos(y)
|
||||
{
|
||||
combox = 0;
|
||||
tooltip_ = new Tooltips();
|
||||
tooltip_ = new Tooltips;
|
||||
}
|
||||
|
||||
|
||||
|
@ -158,7 +158,7 @@ void FontLoader::getFontinfo(LyXFont::FONT_FAMILY family,
|
||||
string norm = lyxrc.font_norm;
|
||||
string fontname;
|
||||
|
||||
FontInfo * fi = new FontInfo();
|
||||
FontInfo * fi = new FontInfo;
|
||||
fontinfo[family][series][shape] = fi;
|
||||
|
||||
for (int cfam = 0; cfam < 2; ++cfam) {
|
||||
|
@ -40,7 +40,7 @@ ImagePtr xformsGImage::newImage()
|
||||
init_graphics();
|
||||
|
||||
ImagePtr ptr;
|
||||
ptr.reset(new xformsGImage());
|
||||
ptr.reset(new xformsGImage);
|
||||
return ptr;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user