Skip to content

Commit 0e27148

Browse files
committed
rename ImagemApp to ImagemAppData.m
1 parent 4fdd9c6 commit 0e27148

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

ImageM/+imagem/+app/ImagemApp.m renamed to ImageM/+imagem/+app/ImagemAppData.m

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
classdef ImagemApp < handle
1+
classdef ImagemAppData < handle
22
% ImageM application class, that manages open images.
33
%
4-
% output = ImagemApp(input)
4+
% output = ImagemAppData(input)
55
%
66
% Example
7-
% ImagemApp
7+
% ImagemAppData
88
%
99
% See also
1010
%
@@ -41,9 +41,9 @@
4141

4242
%% Constructor
4343
methods
44-
function obj = ImagemApp(varargin)
45-
46-
end % constructor
44+
function obj = ImagemAppData(varargin)
45+
% Constructor for the ImagemAppData class.
46+
end
4747

4848
end % construction function
4949

ImageM/ImageM.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
% Created: 2011-03-10, using Matlab 7.9.0.529 (R2009b)
3232
% Copyright 2011 INRA - Cepia Software Platform.
3333

34-
import imagem.app.ImagemApp;
34+
import imagem.app.ImagemAppData;
3535
import imagem.gui.ImagemGUI;
3636

3737
% check if image is present, or create one
@@ -60,7 +60,7 @@
6060
end
6161

6262
% create the application, and a GUI
63-
app = ImagemApp;
63+
app = ImagemAppData;
6464
gui = ImagemGUI(app);
6565

6666
% use the GUI to create a new image display

0 commit comments

Comments
 (0)