~cmiller/ubuntu/trusty/icewm/translations-cause-crash-lp447883

« back to all changes in this revision

Viewing changes to src/wmaction.cc

  • Committer: Bazaar Package Importer
  • Author(s): Eduard Bloch
  • Date: 2008-03-10 21:24:25 UTC
  • mfrom: (1.2.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20080310212425-562btgm3vbwzvhu0
Tags: 1.2.35-1
* New upstream release with one fix from CVS
* Automatic linking with gcc -lsupc++ fixed (failed in recent versions),
  also using "-Wl,--as-needed"
* Documentation update - README.Debian reordered by importance
* Changed font defaults in Xft specifications to consider Bitstream Vera
  family as alternative font (closes: #360060, #319191, #349952, #456463),
  also documented how to configure alternative fonts
* Added Bernhard's iconify_on_wm_hints as dpatch (closes: #428566, #389919)
* force use of bash in upstream's Makefile to keep the installation
  magic as-is (closes: #459181)

Show diffs side-by-side

added added

removed removed

Lines of Context:
51
51
YAction *actionRun(0);
52
52
YAction *actionExit(0);
53
53
 
 
54
YAction *actionFocusClickToFocus(0);
 
55
YAction *actionFocusMouseSloppy(0);
 
56
YAction *actionFocusCustom(0);
 
57
 
54
58
void initActions() {
55
59
    actionCascade = new YAction();
56
60
    actionArrange = new YAction();
98
102
#endif
99
103
    actionRun = new YAction();
100
104
    actionExit = new YAction();
 
105
 
 
106
    actionFocusClickToFocus = new YAction();
 
107
    actionFocusMouseSloppy = new YAction();
 
108
    actionFocusCustom = new YAction();
101
109
}
102
110