~ubuntu-branches/ubuntu/trusty/mediathekview/trusty

« back to all changes in this revision

Viewing changes to src/mediathek/gui/dialogEinstellungen/DialogImportPset.java

  • Committer: Package Import Robot
  • Author(s): Markus Koschany
  • Date: 2014-01-07 17:25:52 UTC
  • mfrom: (4.1.6 sid)
  • Revision ID: package-import@ubuntu.com-20140107172552-vkv6uixpou3sa5og
Tags: 4-1
* Imported Upstream version 4.
* Declare compliance with Standards-Version 3.9.5.
* Correct a mistake in the last changelog entry.
  - build-dependencies <-> dependencies
* Override lintian warning:incompatible-java-bytecode-format Java7 because
  Java7 is the current default JRE for Jessie. MediathekView also requires
  Java7 to run and is incompatible with Java6 or earlier.
* debian/control: Add libjackson2-core-java, libtimingframework-java and
  libxz-java to Build-Depends-Indep.
* Drop README.source. Now upstream provides a source tarball.
* Refresh modify-ant-build-system.patch.
* debian/rules: Remove get-orig-source target. No longer needed.
* Update mediathekview.manifest. Add new required libraries to classpath.
* Update debian/watch for new versioning scheme.
* Update debian/copyright for new release. Add BSD-3-clause license.
* Update man pages and remove unsupported options.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
 */
20
20
package mediathek.gui.dialogEinstellungen;
21
21
 
22
 
import java.awt.Component;
23
22
import java.awt.event.ActionEvent;
24
23
import java.awt.event.ActionListener;
25
 
import mediathek.daten.DDaten;
 
24
import javax.swing.JFrame;
 
25
import mediathek.daten.Daten;
26
26
import mediathek.daten.ListePset;
27
27
import mediathek.tool.EscBeenden;
28
28
 
30
30
 
31
31
    public boolean ok = false;
32
32
    private ListePset liste;
33
 
    private DDaten ddaten;
34
 
    private Component parentComponent;
 
33
    private Daten ddaten;
 
34
    private JFrame parentComponent;
35
35
 
36
 
    public DialogImportPset(java.awt.Frame parent, boolean modal, DDaten dd, ListePset lliste) {
 
36
    public DialogImportPset(JFrame parent, boolean modal, Daten dd, ListePset lliste) {
37
37
        super(parent, modal);
38
38
        parentComponent = parent;
39
39
        initComponents();