~ubuntu-branches/ubuntu/vivid/mediathekview/vivid

« back to all changes in this revision

Viewing changes to src/mediathek/tool/CellRendererPset.java

  • Committer: Package Import Robot
  • Author(s): Markus Koschany
  • Date: 2014-10-24 12:49:46 UTC
  • mfrom: (4.1.12 sid)
  • Revision ID: package-import@ubuntu.com-20141024124946-rhnmiwad6apojoxt
Tags: 7.1-1
* Imported Upstream version 7.1.
* Declare compliance with Debian Policy 3.9.6.
* Update VCS-Browser field to new canonical address.
* Update man pages timestamp.
* Update debian/copyright for new release.
* Add README.source.
* Rename modify-ant-build-system.patch to build.patch and update it for 7.1.

Show diffs side-by-side

added added

removed removed

Lines of Context:
65
65
                setHorizontalAlignment(SwingConstants.CENTER);
66
66
                setText(""); // nur das Icon anzeigen
67
67
                if (datenPset.istAbspielen()) {
68
 
                    setIcon(GetIcon.getIcon("ja_16.png"));
 
68
                    setIcon(GetIcon.getProgramIcon("ja_16.png"));
69
69
                } else {
70
 
                    setIcon(GetIcon.getIcon("nein_12.png"));
 
70
                    setIcon(GetIcon.getProgramIcon("nein_12.png"));
71
71
                }
72
72
            }
73
73
            if (c == DatenPset.PROGRAMMSET_IST_SPEICHERN_NR) {
74
74
                setHorizontalAlignment(SwingConstants.CENTER);
75
75
                setText(""); // nur das Icon anzeigen
76
76
                if (datenPset.istSpeichern()) {
77
 
                    setIcon(GetIcon.getIcon("ja_16.png"));
 
77
                    setIcon(GetIcon.getProgramIcon("ja_16.png"));
78
78
                } else {
79
 
                    setIcon(GetIcon.getIcon("nein_12.png"));
 
79
                    setIcon(GetIcon.getProgramIcon("nein_12.png"));
80
80
                }
81
81
            }
82
82
//            if (c == DatenPset.PROGRAMMSET_IST_BUTTON_NR) {
116
116
//                }
117
117
//            }
118
118
        } catch (Exception ex) {
119
 
            Log.fehlerMeldung(962380071, Log.FEHLER_ART_PROG, this.getClass().getName(), ex);
 
119
            Log.fehlerMeldung(962380071, this.getClass().getName(), ex);
120
120
        }
121
121
        return this;
122
122
    }