[aseprite] 149/308: Replace package name in src/file/file.cpp with PACKAGE macro

Tobias Hansen thansen at moszumanska.debian.org
Tue Mar 8 02:45:04 UTC 2016


This is an automated email from the git hooks/post-receive script.

thansen pushed a commit to branch master
in repository aseprite.

commit 2f2bd40c8432410f3db78542cbe1ad3670d4d735
Author: David Capello <davidcapello at gmail.com>
Date:   Tue Dec 22 17:55:35 2015 -0300

    Replace package name in src/file/file.cpp with PACKAGE macro
---
 src/app/file/file.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/app/file/file.cpp b/src/app/file/file.cpp
index 92308af..5a02547 100644
--- a/src/app/file/file.cpp
+++ b/src/app/file/file.cpp
@@ -145,7 +145,7 @@ FileOp* FileOp::createLoadDocumentOperation(Context* context, const char* filena
 
   if (!fop->m_format ||
       !fop->m_format->support(FILE_SUPPORT_LOAD)) {
-    fop->setError("ASEPRITE can't load \"%s\" files\n", extension.c_str());
+    fop->setError("%s can't load \"%s\" files\n", PACKAGE, extension.c_str());
     goto done;
   }
 
@@ -239,7 +239,7 @@ FileOp* FileOp::createSaveDocumentOperation(const Context* context,
 
   if (!fop->m_format ||
       !fop->m_format->support(FILE_SUPPORT_SAVE)) {
-    fop->setError("ASEPRITE can't save \"%s\" files\n", extension.c_str());
+    fop->setError("%s can't save \"%s\" files\n", PACKAGE, extension.c_str());
     return fop.release();
   }
 

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-games/aseprite.git



More information about the Pkg-games-commits mailing list