{
const int APP_ID_LENTH = 10;
-const int MAX_CONTENT_LEN = 512;
const int MAX_LOCAL_BUFSIZE = 128;
const char* DBUS_PATH = "/setting/dbus_handler";
const char* DBUS_SIGNAL_INTERFACE = "org.tizen.setting.signal";
_AppSettingImpl::Load(void)
{
SysTryReturnResult(NID_APP, File::IsFileExist(__filePath), E_OBJ_NOT_FOUND,
- "The instance of specified AppId does not have setting information.");
+ "The instance of specified AppId does not have setting information. %ls", __filePath.GetPointer());
result r = E_SUCCESS;
std::unique_ptr<ByteBuffer> pfilePath(Tizen::Base::Utility::StringUtil::StringToUtf8N(__filePath));
}
}
-bool
-IsPosted(ui_notification_h handle)
-{
- struct ui_notification_s
- {
- void* raw_handle;
- bool ongoing;
- bool posted;
- bool removed;
- char *icon;
- struct tm *time;
- char *title;
- char *content;
- service_h service;
- char *sound;
- bool vibration;
- };
-
- if (handle == NULL)
- {
- return false;
- }
-
- ui_notification_s* pStruct = reinterpret_cast<ui_notification_s*>(handle);
-
- return pStruct->posted;
-}
-
}
namespace Tizen { namespace App