From 0fbe0299d32c78d68e7ee1ad213d6bf70b87dc08 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Revol?= Date: Thu, 8 May 2008 12:35:41 +0000 Subject: [PATCH] BPicture is obviously not text data, should be image/ supertype! git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@25371 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/apps/sudoku/SudokuView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/sudoku/SudokuView.cpp b/src/apps/sudoku/SudokuView.cpp index 52af450d00..7a9064859f 100644 --- a/src/apps/sudoku/SudokuView.cpp +++ b/src/apps/sudoku/SudokuView.cpp @@ -475,7 +475,7 @@ SudokuView::CopyToClipboard() // flattened BPicture, anyone handles that ? if (SaveTo(mio, kExportAsPicture) >= B_OK) { - clip->AddData("text/x-vnd.Be-picture", B_MIME_TYPE, mio.Buffer(), mio.BufferLength()); + clip->AddData("image/x-vnd.Be-picture", B_MIME_TYPE, mio.Buffer(), mio.BufferLength()); } mio.SetSize(0LL);