UltraEdit的代替软件:MadEdit
- skydark
- 帖子: 24
- 注册时间: 2009-03-31 8:12
Re: UltraEdit的代替软件:MadEdit
choso 写了:你再madedit中点一下新建按钮试试,是不是立刻就崩掉了?
madedit has "segmentation fault" in ubuntu 9.10, because the in the MadEdit::OnPaint function will be call when m_ClientBitmap=NULL. I change this by add follow code in the front of the MadEdit::OnPaint like this:
void MadEdit::OnPaint(wxPaintEvent &evt) {
if(m_ClientWidth==0 || m_ClientHeight==0) return;
wxPaintDC dc(this);
wxMemoryDC memdc, markdc;
wxWindow *focuswin=FindFocus();
...........
and now make! (…less)
- chenliang165
- 帖子: 6
- 注册时间: 2012-04-12 14:10
Re: UltraEdit的代替软件:MadEdit
是啊,这个问题我也想问下梦心523 写了:Madedit 能打开FTP上的文本文件吗???