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

« back to all changes in this revision

Viewing changes to src/mediathek/gui/dialogEinstellungen/DialogZiel.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:
28
28
import javax.swing.JOptionPane;
29
29
 
30
30
import com.jidesoft.utils.SystemInfo;
31
 
import mediathek.daten.DDaten;
 
31
import mediathek.daten.Daten;
32
32
import mediathek.res.GetIcon;
33
33
import mediathek.tool.EscBeenden;
34
34
import mediathek.tool.GuiFunktionen;
35
 
import mediathek.tool.Log;
 
35
import mediathek.controller.Log;
36
36
import mediathek.tool.MVMessageDialog;
37
37
 
38
38
public class DialogZiel extends javax.swing.JDialog {
40
40
    public boolean ok = false;
41
41
    public String ziel = "";
42
42
    private Component parentComponent = null;
43
 
    private DDaten ddaten = null;
 
43
    private Daten ddaten = null;
44
44
 
45
45
    /**
46
46
     *
50
50
     * @param pfad
51
51
     * @param name
52
52
     */
53
 
    public DialogZiel(java.awt.Frame parent, DDaten dd, boolean modal, String pfad, String name) {
 
53
    public DialogZiel(java.awt.Frame parent, Daten dd, boolean modal, String pfad, String name) {
54
54
        super(parent, modal);
55
55
        parentComponent = parent;
56
56
        ddaten = dd;