Skip to content
Snippets Groups Projects
Commit 06efb2c3 authored by Pierre Falez's avatar Pierre Falez
Browse files

Fix issue

parent 3485e378
No related branches found
No related tags found
No related merge requests found
...@@ -5,7 +5,7 @@ lazy val commonSettings = Seq( ...@@ -5,7 +5,7 @@ lazy val commonSettings = Seq(
version := "1.1", version := "1.1",
organization := "fr.univ-lille.cristal", organization := "fr.univ-lille.cristal",
scalaVersion := "2.11.6", scalaVersion := "2.11.6",
scalacOptions := Seq("-unchecked", "-deprecation", "-encoding", "utf8", "-language:postfixOps"), scalacOptions := Seq("-unchecked", "-deprecation", "-encoding", "utf8", "-language:postfixOps", "-Xmax-classfile-name","78"),
/******************************************************************************************************************** /********************************************************************************************************************
* Dependecy information * Dependecy information
......
...@@ -39,7 +39,7 @@ class AERLabelViewerView(aerFile : String, labelFile : String) extends JFrame { ...@@ -39,7 +39,7 @@ class AERLabelViewerView(aerFile : String, labelFile : String) extends JFrame {
setVisible(true) setVisible(true)
setSize(400, 400) setSize(400, 400)
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE) setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE)
val frame = this val frame = this
addKeyListener(new KeyListener { addKeyListener(new KeyListener {
......
...@@ -96,7 +96,7 @@ class ActivityViewer(filename : String, xIndex : Int, yIndex : Int, valueFunctio ...@@ -96,7 +96,7 @@ class ActivityViewer(filename : String, xIndex : Int, yIndex : Int, valueFunctio
setSize(300, 400) setSize(300, 400)
setVisible(true) setVisible(true)
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE) setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE)
// Data // Data
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment