~ubuntu-branches/ubuntu/maverick/codelite/maverick

« back to all changes in this revision

Viewing changes to LiteEditor/replaceinfilespanel.h

  • Committer: Bazaar Package Importer
  • Author(s): Chow Loong Jin
  • Date: 2009-04-30 02:46:27 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20090430024627-7xp71gerfvw00xtt
Tags: 1.0.2822+dfsg-0ubuntu1
* New upstream release (LP: #369466)
* debian/copyright:
  + Added Files section for sdk/wxpropgrid
  + Made license text RFC compliant (add . for empty lines)
* debian/control:
  + Bump Standards-Version to 3.8.1
* debian/patches/02_fix-desktop.patch,
  + Refreshed to patch cleanly
* debian/*.install,
  debian/codelite.dirs,
  debian/codelite.links,
  debian/patches/03_fix-sh.patch,
  debian/patches/04_change-installpath.patch,
  + Updated for new upstream directory structure
  + Patches dropped, no longer needed.
* debian/patches/03_cstdio-include.patch,
  + Include cstdio for C++ and stdio.h for C, since it seems to be missing
* debian/codelite.menu,
  debian/*.1,
  debian/codelite.manpages:
  + Updated to reflect change in command names
    - CodeLite    => codelite
    - le_exec     => codelite_exec
    - le_dos2unix => codelite_fix_files
    - le_killproc => codelite_kill_children
* debian/README.source,
  debian/rules,
  debian/copyright:
  + Remove sdk/curl from the list of excluded files, since it doesn't exist
    any more

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
    virtual void OnSearchMatch(wxCommandEvent   &e);
44
44
    virtual void OnSearchEnded(wxCommandEvent   &e);
45
45
        virtual void OnMarginClick(wxScintillaEvent &e);
46
 
    
 
46
 
47
47
        virtual void OnMarkAll    (wxCommandEvent   &e);
48
48
        virtual void OnUnmarkAll  (wxCommandEvent   &e);
49
49
        virtual void OnReplace    (wxCommandEvent   &e);
50
50
 
51
 
        virtual void OnMarkAllUI  (wxUpdateUIEvent  &e);
52
 
        virtual void OnUnmarkAllUI(wxUpdateUIEvent  &e);
53
 
        virtual void OnReplaceUI  (wxUpdateUIEvent  &e);
54
 
    
 
51
        virtual void OnMarkAllUI          (wxUpdateUIEvent  &e);
 
52
        virtual void OnUnmarkAllUI        (wxUpdateUIEvent  &e);
 
53
        virtual void OnReplaceUI          (wxUpdateUIEvent  &e);
 
54
        virtual void OnReplaceWithComboUI (wxUpdateUIEvent  &e);
 
55
 
55
56
    DECLARE_EVENT_TABLE()
56
 
    
 
57
 
57
58
public:
58
59
        ReplaceInFilesPanel(wxWindow* parent, wxWindowID id, const wxString &name);
59
60
};