From: Raphael on
Hi,
I keep having the same warning when I open a specific GUIDE .fig file.

In my example below (on R2009b), I have a program called "balltrack2".
In the declared path (in a startup.m file), I have balltrack2.fig and the associated balltrack2.m. The first line of the latter being : function varargout = balltrack2(varargin)

Yet when I try open the .fig with GUIDE for modification, it reports an error on a file with a different name, on a different path (which exist in my system).
See below.
But the mentionned file doesn't even exist !!!! It existed before though.
Any idea ?

>> which balltrack2
/Users/attie/Matlab/raphael/codes/balltrack/GUIs2/balltrack2.m
>> guide
Warning: Could not find an exact (case-sensitive) match for 'Balltrack'.
/Users/attie/Matlab/raphael/codes/balltrack/GUIs/balltrack.m is a case-insensitive match and will
be used instead.
You can improve the performance of your code by using exact
name matches and we therefore recommend that you update your
usage accordingly. Alternatively, you can disable this warning using
warning('off','MATLAB:dispatcher:InexactCaseMatch').
This warning will become an error in future releases.
In hgload at 164
In guidefunc>newGuideFig at 2220
In guidefunc>readSavedFigure at 2615
In guidefunc at 114
In guide at 132
In guidetemplate>processDialogResult at 180
In guidetemplate>dialogCallback at 99