~ubuntu-branches/ubuntu/trusty/libwx-perl/trusty

« back to all changes in this revision

Viewing changes to ext/docview/XS/DocManager.xs

  • Committer: Bazaar Package Importer
  • Author(s): Damyan Ivanov
  • Date: 2008-10-03 00:11:25 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20081003001125-22dw55oo66k8is78
Tags: 0.86-2
debian/rules: run tests with -j1; this disables parallel make during tests
even if the build target was invoked with -jN (N>1).
Closes: #499740 -FTBFS: Failed 2/4 test scripts. 6/9 subtests failed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
## Author:      Simon Flack
5
5
## Modified by:
6
6
## Created:     11/09/2002
7
 
## RCS-ID:      $Id: DocManager.xs 2285 2007-11-11 21:31:54Z mbarbon $
8
 
## Copyright:   (c) 2002-2007 Mattia Barbon
 
7
## RCS-ID:      $Id: DocManager.xs 2453 2008-08-31 11:09:40Z mbarbon $
 
8
## Copyright:   (c) 2002-2008 Mattia Barbon
9
9
## Licence:     This program is free software; you can redistribute it and/or
10
10
##              modify it under the same terms as Perl itself
11
11
#############################################################################
145
145
  CODE:
146
146
    THIS->OnUpdateFileOpen( *event );
147
147
 
 
148
#if WXPERL_W_VERSION_LT( 2, 9, 0 )
 
149
 
148
150
void
149
151
wxDocManager::OnUpdateFileClose( event )
150
152
    wxUpdateUIEvent* event
157
159
  CODE:
158
160
    THIS->OnUpdateFileRevert( *event );
159
161
 
 
162
#endif
 
163
 
160
164
void
161
165
wxDocManager::OnUpdateFileNew( event )
162
166
    wxUpdateUIEvent* event
169
173
  CODE:
170
174
    THIS->OnUpdateFileSave( *event );
171
175
 
 
176
#if WXPERL_W_VERSION_LT( 2, 9, 0 )
 
177
 
172
178
void
173
179
wxDocManager::OnUpdateFileSaveAs( event )
174
180
    wxUpdateUIEvent* event
175
181
  CODE:
176
182
    THIS->OnUpdateFileSaveAs( *event );
177
183
 
 
184
#endif
 
185
 
178
186
void
179
187
wxDocManager::OnUpdateUndo( event )
180
188
    wxUpdateUIEvent* event
187
195
  CODE:
188
196
    THIS->OnUpdateRedo( *event );
189
197
 
 
198
#if WXPERL_W_VERSION_LT( 2, 9, 0 )
 
199
 
190
200
void
191
201
wxDocManager::OnUpdatePrint( event )
192
202
    wxUpdateUIEvent* event
193
203
  CODE:
194
204
    THIS->OnUpdatePrint( *event );
195
205
 
 
206
#endif
 
207
 
196
208
#if WXPERL_W_VERSION_LE( 2, 5, 2 )
197
209
 
198
210
void
203
215
 
204
216
#endif
205
217
 
 
218
#if WXPERL_W_VERSION_LT( 2, 9, 0 )
 
219
 
206
220
void
207
221
wxDocManager::OnUpdatePreview( event )
208
222
    wxUpdateUIEvent* event
209
223
  CODE:
210
224
    THIS->OnUpdatePreview( *event );
211
225
 
 
226
#endif
 
227
 
212
228
wxView *
213
229
wxDocManager::GetCurrentView()
214
230