license: remove FSF postal address from boiler plate license text
[pulseview.git] / pv / devices / file.cpp
index 5e1cb859d45073a1c63eb33d3b97be4ef22e09e3..04c8be3792ad1ffc95d9d5139e97c25d90a7578a 100644 (file)
@@ -14,8 +14,7 @@
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
+ * along with this program; if not, see <http://www.gnu.org/licenses/>.
  */
 
 #include <boost/filesystem.hpp>
@@ -32,12 +31,12 @@ File::File(const std::string &file_name) :
 
 std::string File::full_name() const
 {
-       return boost::filesystem::path(file_name_).filename().string();
+       return file_name_;
 }
 
 std::string File::display_name(const DeviceManager&) const
 {
-       return File::full_name();
+       return boost::filesystem::path(file_name_).filename().string();
 }
 
 } // namespace devices