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

« back to all changes in this revision

Viewing changes to src/mediathek/tool/CellRendererProgramme.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:
50
50
            int c = table.convertColumnIndexToModel(column);
51
51
            if (c == DatenProg.PROGRAMM_RESTART_NR) {
52
52
                if (getText().equals(Boolean.TRUE.toString())) {
53
 
                    setIcon(GetIcon.getIcon("ja_16.png"));
 
53
                    setIcon(GetIcon.getProgramIcon("ja_16.png"));
54
54
                } else {
55
 
                    setIcon(GetIcon.getIcon("nein_12.png"));
 
55
                    setIcon(GetIcon.getProgramIcon("nein_12.png"));
56
56
                }
57
57
                setText("");
58
58
            }
59
59
        } catch (Exception ex) {
60
 
            Log.fehlerMeldung(338740095, Log.FEHLER_ART_PROG, this.getClass().getName(), ex);
 
60
            Log.fehlerMeldung(338740095,  this.getClass().getName(), ex);
61
61
        }
62
62
        return this;
63
63
    }