~ubuntu-branches/ubuntu/lucid/codelite/lucid-updates

« back to all changes in this revision

Viewing changes to LiteEditor/frame.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Chow Loong Jin
  • Date: 2009-05-27 04:16:42 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20090527041642-0yz67hytd4qnpzka
Tags: 1.0.2841+dfsg-0ubuntu1
* New upstream release (LP: #380732)
* debian/*.lintian-overrides:
  + Drop them, they're pointless anyway
* debian/control,
  debian/rules,
  debian/README.source:
  + Use DH 7.0.50, with override rules instead of CDBS
  + Bump quilt version to 0.46-7 for DH integration
  + Tidy up get-orig-source rule
* debian/patches/01_symlink.patch:
  + Dropped, applied upstream
* debian/patches/03_cstdio-include.patch:
  + Dropped, fixed upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
479
479
        EVT_COMMAND(wxID_ANY, wxEVT_CMD_NEW_DOCKPANE,    Frame::OnNewDetachedPane)
480
480
        EVT_COMMAND(wxID_ANY, wxEVT_CMD_DELETE_DOCKPANE, Frame::OnDestroyDetachedPane)
481
481
 
 
482
        EVT_MENU(wxEVT_CMD_RELOAD_EXTERNALLY_MODIFIED, Frame::OnReloadExternallModified)
482
483
END_EVENT_TABLE()
483
484
 
484
485
 
3247
3248
        int col = e.GetInt();
3248
3249
        SetStatusMessage(msg, col);
3249
3250
}
 
3251
 
 
3252
void Frame::OnReloadExternallModified(wxCommandEvent& e)
 
3253
{
 
3254
        wxUnusedVar(e);
 
3255
        GetMainBook()->ReloadExternallyModified();
 
3256
}