photosgallery/viewframework/commandhandlers/commoncommandhandlers/src/glxcommandhandlerrename.cpp
--- a/photosgallery/viewframework/commandhandlers/commoncommandhandlers/src/glxcommandhandlerrename.cpp Wed Sep 15 12:13:06 2010 +0300
+++ b/photosgallery/viewframework/commandhandlers/commoncommandhandlers/src/glxcommandhandlerrename.cpp Wed Oct 13 14:32:09 2010 +0300
@@ -38,10 +38,13 @@
#include <glxicons.mbg>
#include <glxtracer.h>
#include <glxlog.h>
-#include <glxmediageneraldefs.h> // for KMaxMediaPopupTextLength
#include "glxcommandfactory.h"
+namespace
+ {
+ const TInt KNameMaxLength = 128;
+ }
// ---------------------------------------------------------------------------
// Two-phased constructor.
@@ -78,7 +81,7 @@
//
void CGlxCommandHandlerRename::ConstructL(const TDesC& aFileName)
{
- iRenameText = HBufC::NewL(KMaxMediaPopupTextLength);
+ iRenameText = HBufC::NewL(KNameMaxLength);
iResourceOffset = CCoeEnv::Static()->AddResourceFileL(aFileName);
@@ -134,13 +137,16 @@
TPtr textPtr = iRenameText->Des();
GetTitleL( textPtr, aMediaList );
// store the current name.
- TBuf<KMaxMediaPopupTextLength> currentName;
+ TBuf<KNameMaxLength> currentName;
currentName.Copy(textPtr);
// Load the title for the popup
HBufC* title = StringLoader::LoadLC( R_GLX_POPUP_RENAME_TITLE );
CGlxTextEntryPopup* popup = CGlxTextEntryPopup::NewL( *title,
textPtr );
+
+
+
if ( popup->ExecuteLD() == EEikBidOk && currentName != *iRenameText)
{
// Text entry was successful