1 /* |
|
2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
4 * This component and the accompanying materials are made available |
|
5 * under the terms of "Eclipse Public License v1.0" |
|
6 * which accompanies this distribution, and is available |
|
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: |
|
15 * |
|
16 */ |
|
17 #include <QDebug> |
|
18 #include <smcmockclassincludes.h> |
|
19 #include <QAction> |
|
20 |
|
21 // ============================ MEMBER FUNCTIONS =============================== |
|
22 |
|
23 // ----------------------------------------------------------------------------- |
|
24 // QAction::QAction |
|
25 // ----------------------------------------------------------------------------- |
|
26 // |
|
27 QAction::QAction( |
|
28 QObject * parent ) |
|
29 { |
|
30 |
|
31 } |
|
32 |
|
33 |
|
34 // ----------------------------------------------------------------------------- |
|
35 // QAction::QAction |
|
36 // ----------------------------------------------------------------------------- |
|
37 // |
|
38 QAction::QAction( |
|
39 const QString & text, |
|
40 QObject * parent ) |
|
41 { |
|
42 |
|
43 } |
|
44 |
|
45 |
|
46 // ----------------------------------------------------------------------------- |
|
47 // QAction::QAction |
|
48 // ----------------------------------------------------------------------------- |
|
49 // |
|
50 QAction::QAction( |
|
51 const QIcon & icon, |
|
52 const QString & text, |
|
53 QObject * parent ) |
|
54 { |
|
55 |
|
56 } |
|
57 |
|
58 |
|
59 #ifdef QT3_SUPPORT |
|
60 // ----------------------------------------------------------------------------- |
|
61 // QAction::QAction |
|
62 // ----------------------------------------------------------------------------- |
|
63 // |
|
64 QAction::QAction( |
|
65 QObject * parent, |
|
66 const char * name ) |
|
67 { |
|
68 |
|
69 } |
|
70 |
|
71 |
|
72 // ----------------------------------------------------------------------------- |
|
73 // QAction::QAction |
|
74 // ----------------------------------------------------------------------------- |
|
75 // |
|
76 QAction::QAction( |
|
77 const QString & text, |
|
78 const QKeySequence & shortcut, |
|
79 QObject * parent, |
|
80 const char * name ) |
|
81 { |
|
82 |
|
83 } |
|
84 |
|
85 |
|
86 // ----------------------------------------------------------------------------- |
|
87 // QAction::QAction |
|
88 // ----------------------------------------------------------------------------- |
|
89 // |
|
90 QAction::QAction( |
|
91 const QIcon & icon, |
|
92 const QString & text, |
|
93 const QKeySequence & shortcut, |
|
94 QObject * parent, |
|
95 const char * name ) |
|
96 { |
|
97 |
|
98 } |
|
99 #endif |
|
100 |
|
101 // ----------------------------------------------------------------------------- |
|
102 // QAction::~QAction |
|
103 // ----------------------------------------------------------------------------- |
|
104 // |
|
105 QAction::~QAction( ) |
|
106 { |
|
107 |
|
108 } |
|
109 |
|
110 |
|
111 // ----------------------------------------------------------------------------- |
|
112 // QAction::setActionGroup |
|
113 // ----------------------------------------------------------------------------- |
|
114 // |
|
115 void QAction::setActionGroup( |
|
116 QActionGroup * group ) |
|
117 { |
|
118 // SMC_MOCK_METHOD1( void, QActionGroup *, group ) |
|
119 } |
|
120 |
|
121 |
|
122 // ----------------------------------------------------------------------------- |
|
123 // QAction::actionGroup |
|
124 // ----------------------------------------------------------------------------- |
|
125 // |
|
126 QActionGroup * QAction::actionGroup( ) const |
|
127 { |
|
128 // SMC_MOCK_METHOD0( QActionGroup * ) |
|
129 } |
|
130 |
|
131 |
|
132 // ----------------------------------------------------------------------------- |
|
133 // QAction::setIcon |
|
134 // ----------------------------------------------------------------------------- |
|
135 // |
|
136 void QAction::setIcon( |
|
137 const QIcon & icon ) |
|
138 { |
|
139 // SMC_MOCK_METHOD1( void, const QIcon &, icon ) |
|
140 } |
|
141 |
|
142 |
|
143 // ----------------------------------------------------------------------------- |
|
144 // QAction::icon |
|
145 // ----------------------------------------------------------------------------- |
|
146 // |
|
147 QIcon QAction::icon( ) const |
|
148 { |
|
149 // SMC_MOCK_METHOD0( QIcon ) |
|
150 } |
|
151 |
|
152 |
|
153 // ----------------------------------------------------------------------------- |
|
154 // QAction::setText |
|
155 // ----------------------------------------------------------------------------- |
|
156 // |
|
157 void QAction::setText( |
|
158 const QString & text ) |
|
159 { |
|
160 SMC_MOCK_METHOD1( void, const QString &, text ) |
|
161 } |
|
162 |
|
163 |
|
164 // ----------------------------------------------------------------------------- |
|
165 // QAction::text |
|
166 // ----------------------------------------------------------------------------- |
|
167 // |
|
168 QString QAction::text( ) const |
|
169 { |
|
170 SMC_MOCK_METHOD0( QString ) |
|
171 } |
|
172 |
|
173 |
|
174 // ----------------------------------------------------------------------------- |
|
175 // QAction::setIconText |
|
176 // ----------------------------------------------------------------------------- |
|
177 // |
|
178 void QAction::setIconText( |
|
179 const QString & text ) |
|
180 { |
|
181 SMC_MOCK_METHOD1( void, const QString &, text ) |
|
182 } |
|
183 |
|
184 |
|
185 // ----------------------------------------------------------------------------- |
|
186 // QAction::iconText |
|
187 // ----------------------------------------------------------------------------- |
|
188 // |
|
189 QString QAction::iconText( ) const |
|
190 { |
|
191 SMC_MOCK_METHOD0( QString ) |
|
192 } |
|
193 |
|
194 |
|
195 // ----------------------------------------------------------------------------- |
|
196 // QAction::setToolTip |
|
197 // ----------------------------------------------------------------------------- |
|
198 // |
|
199 void QAction::setToolTip( |
|
200 const QString & tip ) |
|
201 { |
|
202 SMC_MOCK_METHOD1( void, const QString &, tip ) |
|
203 } |
|
204 |
|
205 |
|
206 // ----------------------------------------------------------------------------- |
|
207 // QAction::toolTip |
|
208 // ----------------------------------------------------------------------------- |
|
209 // |
|
210 QString QAction::toolTip( ) const |
|
211 { |
|
212 SMC_MOCK_METHOD0( QString ) |
|
213 } |
|
214 |
|
215 |
|
216 // ----------------------------------------------------------------------------- |
|
217 // QAction::setStatusTip |
|
218 // ----------------------------------------------------------------------------- |
|
219 // |
|
220 void QAction::setStatusTip( |
|
221 const QString & statusTip ) |
|
222 { |
|
223 SMC_MOCK_METHOD1( void, const QString &, statusTip ) |
|
224 } |
|
225 |
|
226 |
|
227 // ----------------------------------------------------------------------------- |
|
228 // QAction::statusTip |
|
229 // ----------------------------------------------------------------------------- |
|
230 // |
|
231 QString QAction::statusTip( ) const |
|
232 { |
|
233 SMC_MOCK_METHOD0( QString ) |
|
234 } |
|
235 |
|
236 |
|
237 // ----------------------------------------------------------------------------- |
|
238 // QAction::setWhatsThis |
|
239 // ----------------------------------------------------------------------------- |
|
240 // |
|
241 void QAction::setWhatsThis( |
|
242 const QString & what ) |
|
243 { |
|
244 SMC_MOCK_METHOD1( void, const QString &, what ) |
|
245 } |
|
246 |
|
247 |
|
248 // ----------------------------------------------------------------------------- |
|
249 // QAction::whatsThis |
|
250 // ----------------------------------------------------------------------------- |
|
251 // |
|
252 QString QAction::whatsThis( ) const |
|
253 { |
|
254 SMC_MOCK_METHOD0( QString ) |
|
255 } |
|
256 |
|
257 |
|
258 // ----------------------------------------------------------------------------- |
|
259 // QAction::setPriority |
|
260 // ----------------------------------------------------------------------------- |
|
261 // |
|
262 void QAction::setPriority( |
|
263 QAction::Priority priority ) |
|
264 { |
|
265 // SMC_MOCK_METHOD1( void, Priority, priority ) |
|
266 } |
|
267 |
|
268 |
|
269 // ----------------------------------------------------------------------------- |
|
270 // QAction::priority |
|
271 // ----------------------------------------------------------------------------- |
|
272 // |
|
273 QAction::Priority QAction::priority( ) const |
|
274 { |
|
275 // SMC_MOCK_METHOD0( Priority ) |
|
276 } |
|
277 |
|
278 |
|
279 // ----------------------------------------------------------------------------- |
|
280 // QAction::menu |
|
281 // ----------------------------------------------------------------------------- |
|
282 // |
|
283 QMenu * QAction::menu( ) const |
|
284 { |
|
285 // SMC_MOCK_METHOD0( QMenu * ) |
|
286 } |
|
287 |
|
288 |
|
289 // ----------------------------------------------------------------------------- |
|
290 // QAction::setMenu |
|
291 // ----------------------------------------------------------------------------- |
|
292 // |
|
293 void QAction::setMenu( |
|
294 QMenu * menu ) |
|
295 { |
|
296 // SMC_MOCK_METHOD1( void, QMenu *, menu ) |
|
297 } |
|
298 |
|
299 |
|
300 // ----------------------------------------------------------------------------- |
|
301 // QAction::setSeparator |
|
302 // ----------------------------------------------------------------------------- |
|
303 // |
|
304 void QAction::setSeparator( |
|
305 bool b ) |
|
306 { |
|
307 SMC_MOCK_METHOD1( void, bool, b ) |
|
308 } |
|
309 |
|
310 |
|
311 // ----------------------------------------------------------------------------- |
|
312 // QAction::isSeparator |
|
313 // ----------------------------------------------------------------------------- |
|
314 // |
|
315 bool QAction::isSeparator( ) const |
|
316 { |
|
317 SMC_MOCK_METHOD0( bool ) |
|
318 } |
|
319 |
|
320 |
|
321 // ----------------------------------------------------------------------------- |
|
322 // QAction::setShortcut |
|
323 // ----------------------------------------------------------------------------- |
|
324 // |
|
325 void QAction::setShortcut( |
|
326 const QKeySequence & shortcut ) |
|
327 { |
|
328 // SMC_MOCK_METHOD1( void, const QKeySequence &, shortcut ) |
|
329 } |
|
330 |
|
331 |
|
332 // ----------------------------------------------------------------------------- |
|
333 // QAction::shortcut |
|
334 // ----------------------------------------------------------------------------- |
|
335 // |
|
336 QKeySequence QAction::shortcut( ) const |
|
337 { |
|
338 // SMC_MOCK_METHOD0( QKeySequence ) |
|
339 } |
|
340 |
|
341 |
|
342 // ----------------------------------------------------------------------------- |
|
343 // QAction::setShortcuts |
|
344 // ----------------------------------------------------------------------------- |
|
345 // |
|
346 void QAction::setShortcuts( |
|
347 const QList<QKeySequence> & shortcuts ) |
|
348 { |
|
349 // SMC_MOCK_METHOD1( void, const QList<QKeySequence> &, shortcuts ) |
|
350 } |
|
351 |
|
352 |
|
353 // ----------------------------------------------------------------------------- |
|
354 // QAction::setShortcuts |
|
355 // ----------------------------------------------------------------------------- |
|
356 // |
|
357 void QAction::setShortcuts( |
|
358 QKeySequence:: StandardKey ) |
|
359 { |
|
360 // SMC_MOCK_METHOD1( void, QKeySequence::, StandardKey ) |
|
361 } |
|
362 |
|
363 |
|
364 // ----------------------------------------------------------------------------- |
|
365 // QAction::shortcuts |
|
366 // ----------------------------------------------------------------------------- |
|
367 // |
|
368 QList <QKeySequence > QAction::shortcuts( ) const |
|
369 { |
|
370 // SMC_MOCK_METHOD0( QList <QKeySequence > ) |
|
371 } |
|
372 |
|
373 |
|
374 // ----------------------------------------------------------------------------- |
|
375 // QAction::setShortcutContext |
|
376 // ----------------------------------------------------------------------------- |
|
377 // |
|
378 void QAction::setShortcutContext( |
|
379 Qt::ShortcutContext context ) |
|
380 { |
|
381 // SMC_MOCK_METHOD1( void, Qt::ShortcutContext, context ) |
|
382 } |
|
383 |
|
384 |
|
385 // ----------------------------------------------------------------------------- |
|
386 // QAction::shortcutContext |
|
387 // ----------------------------------------------------------------------------- |
|
388 // |
|
389 Qt::ShortcutContext QAction::shortcutContext( ) const |
|
390 { |
|
391 // SMC_MOCK_METHOD0( Qt::ShortcutContext ) |
|
392 } |
|
393 |
|
394 |
|
395 // ----------------------------------------------------------------------------- |
|
396 // QAction::setAutoRepeat |
|
397 // ----------------------------------------------------------------------------- |
|
398 // |
|
399 void QAction::setAutoRepeat( bool ) |
|
400 { |
|
401 // SMC_MOCK_METHOD0( bool ) |
|
402 } |
|
403 |
|
404 |
|
405 // ----------------------------------------------------------------------------- |
|
406 // QAction::autoRepeat |
|
407 // ----------------------------------------------------------------------------- |
|
408 // |
|
409 bool QAction::autoRepeat( ) const |
|
410 { |
|
411 // SMC_MOCK_METHOD0( bool ) |
|
412 } |
|
413 |
|
414 |
|
415 // ----------------------------------------------------------------------------- |
|
416 // QAction::setFont |
|
417 // ----------------------------------------------------------------------------- |
|
418 // |
|
419 void QAction::setFont( |
|
420 const QFont & font ) |
|
421 { |
|
422 // SMC_MOCK_METHOD1( void, const QFont &, font ) |
|
423 } |
|
424 |
|
425 |
|
426 // ----------------------------------------------------------------------------- |
|
427 // QAction::font |
|
428 // ----------------------------------------------------------------------------- |
|
429 // |
|
430 QFont QAction::font( ) const |
|
431 { |
|
432 // SMC_MOCK_METHOD0( QFont ) |
|
433 } |
|
434 |
|
435 |
|
436 // ----------------------------------------------------------------------------- |
|
437 // QAction::setCheckable |
|
438 // ----------------------------------------------------------------------------- |
|
439 // |
|
440 void QAction::setCheckable( bool ) |
|
441 { |
|
442 SMC_MOCK_METHOD0( void ) |
|
443 } |
|
444 |
|
445 |
|
446 // ----------------------------------------------------------------------------- |
|
447 // QAction::isCheckable |
|
448 // ----------------------------------------------------------------------------- |
|
449 // |
|
450 bool QAction::isCheckable( ) const |
|
451 { |
|
452 SMC_MOCK_METHOD0( bool ) |
|
453 } |
|
454 |
|
455 |
|
456 // ----------------------------------------------------------------------------- |
|
457 // QAction::data |
|
458 // ----------------------------------------------------------------------------- |
|
459 // |
|
460 QVariant QAction::data( ) const |
|
461 { |
|
462 // SMC_MOCK_METHOD0( QVariant ) |
|
463 } |
|
464 |
|
465 |
|
466 // ----------------------------------------------------------------------------- |
|
467 // QAction::setData |
|
468 // ----------------------------------------------------------------------------- |
|
469 // |
|
470 void QAction::setData( |
|
471 const QVariant & var ) |
|
472 { |
|
473 // SMC_MOCK_METHOD1( void, const QVariant &, var ) |
|
474 } |
|
475 |
|
476 |
|
477 // ----------------------------------------------------------------------------- |
|
478 // QAction::isChecked |
|
479 // ----------------------------------------------------------------------------- |
|
480 // |
|
481 bool QAction::isChecked( ) const |
|
482 { |
|
483 SMC_MOCK_METHOD0( bool ) |
|
484 } |
|
485 |
|
486 |
|
487 // ----------------------------------------------------------------------------- |
|
488 // QAction::isEnabled |
|
489 // ----------------------------------------------------------------------------- |
|
490 // |
|
491 bool QAction::isEnabled( ) const |
|
492 { |
|
493 SMC_MOCK_METHOD0( bool ) |
|
494 } |
|
495 |
|
496 |
|
497 // ----------------------------------------------------------------------------- |
|
498 // QAction::isVisible |
|
499 // ----------------------------------------------------------------------------- |
|
500 // |
|
501 bool QAction::isVisible( ) const |
|
502 { |
|
503 SMC_MOCK_METHOD0( bool ) |
|
504 } |
|
505 |
|
506 |
|
507 // ----------------------------------------------------------------------------- |
|
508 // QAction::activate |
|
509 // ----------------------------------------------------------------------------- |
|
510 // |
|
511 void QAction::activate( |
|
512 ActionEvent event ) |
|
513 { |
|
514 // SMC_MOCK_METHOD1( void, ActionEvent, event ) |
|
515 } |
|
516 |
|
517 |
|
518 // ----------------------------------------------------------------------------- |
|
519 // QAction::showStatusText |
|
520 // ----------------------------------------------------------------------------- |
|
521 // |
|
522 bool QAction::showStatusText( |
|
523 QWidget * widget ) |
|
524 { |
|
525 // SMC_MOCK_METHOD1( bool, QWidget *, widget ) |
|
526 } |
|
527 |
|
528 |
|
529 // ----------------------------------------------------------------------------- |
|
530 // QAction::setMenuRole |
|
531 // ----------------------------------------------------------------------------- |
|
532 // |
|
533 void QAction::setMenuRole( |
|
534 QAction::MenuRole menuRole ) |
|
535 { |
|
536 // SMC_MOCK_METHOD1( void, MenuRole, menuRole ) |
|
537 } |
|
538 |
|
539 |
|
540 // ----------------------------------------------------------------------------- |
|
541 // QAction::menuRole |
|
542 // ----------------------------------------------------------------------------- |
|
543 // |
|
544 QAction::MenuRole QAction::menuRole( ) const |
|
545 { |
|
546 // SMC_MOCK_METHOD0( MenuRole ) |
|
547 } |
|
548 |
|
549 |
|
550 // ----------------------------------------------------------------------------- |
|
551 // QAction::setSoftKeyRole |
|
552 // ----------------------------------------------------------------------------- |
|
553 // |
|
554 void QAction::setSoftKeyRole( |
|
555 QAction::SoftKeyRole softKeyRole ) |
|
556 { |
|
557 // SMC_MOCK_METHOD1( void, SoftKeyRole, softKeyRole ) |
|
558 } |
|
559 |
|
560 |
|
561 // ----------------------------------------------------------------------------- |
|
562 // QAction::softKeyRole |
|
563 // ----------------------------------------------------------------------------- |
|
564 // |
|
565 QAction::SoftKeyRole QAction::softKeyRole( ) const |
|
566 { |
|
567 // SMC_MOCK_METHOD0( SoftKeyRole ) |
|
568 } |
|
569 |
|
570 |
|
571 // ----------------------------------------------------------------------------- |
|
572 // QAction::setIconVisibleInMenu |
|
573 // ----------------------------------------------------------------------------- |
|
574 // |
|
575 void QAction::setIconVisibleInMenu( |
|
576 bool visible ) |
|
577 { |
|
578 SMC_MOCK_METHOD1( void, bool, visible ) |
|
579 } |
|
580 |
|
581 |
|
582 // ----------------------------------------------------------------------------- |
|
583 // QAction::isIconVisibleInMenu |
|
584 // ----------------------------------------------------------------------------- |
|
585 // |
|
586 bool QAction::isIconVisibleInMenu( ) const |
|
587 { |
|
588 SMC_MOCK_METHOD0( bool ) |
|
589 } |
|
590 |
|
591 |
|
592 // ----------------------------------------------------------------------------- |
|
593 // QAction::parentWidget |
|
594 // ----------------------------------------------------------------------------- |
|
595 // |
|
596 QWidget * QAction::parentWidget( ) const |
|
597 { |
|
598 // SMC_MOCK_METHOD0( QWidget * ) |
|
599 } |
|
600 |
|
601 |
|
602 // ----------------------------------------------------------------------------- |
|
603 // QAction::associatedWidgets |
|
604 // ----------------------------------------------------------------------------- |
|
605 // |
|
606 QList <QWidget * > QAction::associatedWidgets( ) const |
|
607 { |
|
608 // SMC_MOCK_METHOD0( QList <QWidget * > ) |
|
609 } |
|
610 |
|
611 |
|
612 // ----------------------------------------------------------------------------- |
|
613 // QAction::associatedGraphicsWidgets |
|
614 // ----------------------------------------------------------------------------- |
|
615 // |
|
616 QList <QGraphicsWidget * > QAction::associatedGraphicsWidgets( ) const |
|
617 { |
|
618 // SMC_MOCK_METHOD0( QList <QGraphicsWidget * > ) |
|
619 } |
|
620 |
|
621 // ----------------------------------------------------------------------------- |
|
622 // QAction::setChecked |
|
623 // ----------------------------------------------------------------------------- |
|
624 // |
|
625 void QAction::setChecked( bool ) |
|
626 { |
|
627 //SMC_MOCK_METHOD0( void ) |
|
628 } |
|
629 |
|
630 |
|
631 // ----------------------------------------------------------------------------- |
|
632 // QAction::toggle |
|
633 // ----------------------------------------------------------------------------- |
|
634 // |
|
635 void QAction::toggle( ) |
|
636 { |
|
637 SMC_MOCK_METHOD0( void ) |
|
638 } |
|
639 |
|
640 |
|
641 // ----------------------------------------------------------------------------- |
|
642 // QAction::setEnabled |
|
643 // ----------------------------------------------------------------------------- |
|
644 // |
|
645 void QAction::setEnabled( bool ) |
|
646 { |
|
647 // SMC_MOCK_METHOD0( void ) |
|
648 } |
|
649 |
|
650 |
|
651 // ----------------------------------------------------------------------------- |
|
652 // QAction::setVisible |
|
653 // ----------------------------------------------------------------------------- |
|
654 // |
|
655 void QAction::setVisible( bool ) |
|
656 { |
|
657 // SMC_MOCK_METHOD0( void ) |
|
658 } |
|
659 |
|
660 /* |
|
661 // ----------------------------------------------------------------------------- |
|
662 // QAction::changed |
|
663 // ----------------------------------------------------------------------------- |
|
664 // |
|
665 void QAction::changed( ) |
|
666 { |
|
667 // SMC_MOCK_METHOD0( Q_SIGNALS : void ) |
|
668 } |
|
669 |
|
670 |
|
671 // ----------------------------------------------------------------------------- |
|
672 // QAction::triggered |
|
673 // ----------------------------------------------------------------------------- |
|
674 // |
|
675 void QAction::triggered( |
|
676 bool checked ) |
|
677 { |
|
678 SMC_MOCK_METHOD1( void, bool, checked ) |
|
679 } |
|
680 |
|
681 |
|
682 // ----------------------------------------------------------------------------- |
|
683 // QAction::hovered |
|
684 // ----------------------------------------------------------------------------- |
|
685 // |
|
686 void QAction::hovered( ) |
|
687 { |
|
688 SMC_MOCK_METHOD0( void ) |
|
689 } |
|
690 |
|
691 |
|
692 // ----------------------------------------------------------------------------- |
|
693 // QAction::toggled |
|
694 // ----------------------------------------------------------------------------- |
|
695 // |
|
696 void QAction::toggled( ) |
|
697 { |
|
698 SMC_MOCK_METHOD0( void ) |
|
699 } |
|
700 |
|
701 |
|
702 // ----------------------------------------------------------------------------- |
|
703 // QAction::activated |
|
704 // ----------------------------------------------------------------------------- |
|
705 // |
|
706 void QAction::activated( |
|
707 int ) |
|
708 { |
|
709 // SMC_MOCK_METHOD1( QT_MOC_COMPAT void, , int ) |
|
710 } |
|
711 */ |
|
712 |
|
713 // ----------------------------------------------------------------------------- |
|
714 // QAction::event |
|
715 // ----------------------------------------------------------------------------- |
|
716 // |
|
717 bool QAction::event( |
|
718 QEvent * ) |
|
719 { |
|
720 // SMC_MOCK_METHOD1( bool, QEvent, * ) |
|
721 } |
|
722 |
|
723 |
|
724 // ----------------------------------------------------------------------------- |
|
725 // QAction::QAction |
|
726 // ----------------------------------------------------------------------------- |
|
727 // |
|
728 QAction::QAction( |
|
729 QActionPrivate & dd, |
|
730 QObject * parent ) |
|
731 //: |
|
732 //QObject( /*dd, parent*/ ) |
|
733 { |
|
734 |
|
735 } |
|
736 |
|
737 |
|